Spring Boot
LenMotion
一个很菜的程序员
展开
-
关于WebMvcConfigurerAdapter过期,使用新的WebMvcConfigurationSupport
最近在Spring Boot项目中使用WebMvcConfigurerAdapter时,编译器提示我该类已经被遗弃,查询资料发现需要使用新的WebMvcConfigurationSupport。在使用过程中遇到一些问题,解决后供大家参考!@Configurationpublic class WebAppConfig extends WebMvcConfigurationSupport { ...原创 2018-06-14 10:40:19 · 13292 阅读 · 2 评论 -
Spring Boot 使用Shrio出现过滤地址无效的问题!
在Spring Boot中配置Shiro的时候使用@Configuration,按照网上的某些文章设置ShiroFilterFactoryBean shiroFilterFactoryBean = new ShiroFilterFactoryBean();Map<String, String> filterChainDefinitionMap = new HashMap&l...原创 2018-12-18 11:42:29 · 1686 阅读 · 0 评论 -
Spring Cloud Feign错误:Load balancer does not have available server for client: test
新建spring cloud项目使用feign给我报错Load balancer does not have available server for client,查阅了国内很多的博客有以下两种答案:1、在配置文件加上ribbon: eureka: enabled: false2、增加jar包<dependency> <groupId&g...原创 2019-01-11 10:46:48 · 6285 阅读 · 0 评论