spring boot
maohoo
北漂中的一名java worker,寻觅自己的一片雾霾
展开
-
@maohoo Spring boot 配置Tomcat 根目录,解决web资源目录找不到的问题
项目背景:spring cloud + zuul 场景描述:涉及文件上传,时报服务器500错误,具体报错信息是spring boot 内嵌的tomcat实例根目录找不到解决方案:spring boot 项目中,增加如下配置指定tomcat的基目录,否则spring boot内嵌的tomcat容器会创建一个临时目录,但是此目录有一个定期清除策略,会影响web容器资源的使用。se原创 2018-01-02 10:12:39 · 7206 阅读 · 0 评论 -
@FeignClient with top level @RequestMapping annotation is also registered as Spring MVC handler
Generally the problem is that: when you annotate an @feignclient interface with @requestmapping annotation the handler will be also registered within Spring MVC.Example:@FeignClient("localapp")原创 2018-01-17 11:02:19 · 1017 阅读 · 0 评论 -
spring cloud-Feign使用中遇到的问题总结
转载:http://blog.csdn.net/liuchuanhong1/article/details/54728681问题一:在前面的示例中,我们讲过[java] view plain copy@RequestMapping(value = "/user/{id}", method = RequestMeth转载 2018-01-17 11:42:25 · 2236 阅读 · 0 评论