问题解决
地脉一腰
这个作者很懒,什么都没留下…
展开
-
Spring Data JPA: Ambiguous handler methods mapped for
今天在学习Spring Data JPA,使用Restful风格编程,在测试时发现Ambiguous handler methods mapped for…错误,也在网上找到相同的问题解决方法,原文链接:https://blog.csdn.net/magi1201/article/details/85928036但是,我没有使用方法重载,但是出现的问题一模一样我的代码:于是,我抱着试一试的...原创 2019-11-13 14:41:50 · 488 阅读 · 0 评论 -
Failed to convert property value of type [java.lang.String] to required type [java.util.Date]
在核心控制器controller中加入以下代码:@InitBinderpublic void initBinder(WebDataBinder binder, WebRequest request) { //转换日期 DateFormat dateFormat=new SimpleDateFormat("yyyy-MM-dd"); binder.registerCus...原创 2019-10-28 15:35:48 · 135 阅读 · 0 评论 -
解决SpringBoot Jack Json 返回前端日期少一天的问题
在做项目时发现,页面上显示的日期比数据库日期少一天,查资料发现是格林时间和中部时间存在8小时时差造成的问题。解决方法:一:在springboot文件中加入如下配置:spring: jackson: default-property-inclusion: non_null date-format: "yyyy-MM-dd" tim...原创 2019-10-28 09:32:23 · 1746 阅读 · 0 评论