Springboot
z_k_h
这个作者很懒,什么都没留下…
展开
-
Springboot中"RestController cannot be resolved to a type"
刚开始学习Springboot,然后使用http://start.spring.io/生成了一个实例,但是在使用@RestController注解的时候提示”RestController cannot be resolved to a type”,原因是pom.xml中添加支持web的模块:dependency> groupId>org.springframework.bo原创 2018-01-05 12:16:26 · 9331 阅读 · 0 评论 -
Field myFeignClient in com.zkh.controller.FeignController required a bean of type 'com.zkh.feign.MyF
Description:Field myFeignClient in com.zkh.controller.FeignController required a bean of type 'com.zkh.feign.MyFeignClient' that could not be found.Action:Consider defining a bean of type 'com....原创 2018-05-03 15:25:44 · 5299 阅读 · 3 评论 -
Exception in thread "main" feign.FeignException:
Exception in thread "main" feign.FeignException: status 404 reading FeignClient#getCal(int,int); content:{"timestamp":"2018-04-28T06:44:18.551+0000","status":404,"error":"Not Found","message原创 2018-04-28 17:34:36 · 641 阅读 · 0 评论 -
springboot配置返回时间戳
springboot2.0后,spring会将时间自动给转成UTC字符串了 springboot1.x版本的将date字段返回的是时间戳 配置返回时间戳spring jackson: serialization: write-dates-as-timestamps: true全局配置返回字符串spring: jackson: da...原创 2018-08-31 11:14:47 · 24841 阅读 · 14 评论 -
定位springboot项目打包后,没有主清单属性
首先是一个父模块有3个子模块provider模块依赖api和service模块。provider是需要打成jar包,以便在服务器端通过java -jar的方式进行启动的所以provider的pom.xml中一定要有如下的插件的<build> <plugins> <plugin> <groupId>org.springfram...原创 2019-02-20 13:21:36 · 1093 阅读 · 1 评论