日常报错笔记
roycon
这个作者很懒,什么都没留下…
展开
-
Error creating bean with name 'entityManagerFactory' defined in class path resource
使用Springboot自动生成数据库表的时候,报了以下错误:部分报错代码段如下:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springf...原创 2018-12-27 15:20:28 · 1710 阅读 · 1 评论 -
Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp
在原来的项目上增加了几个时间戳字段,由于在运行实体类的时候,hibernate自动生成的数据库字段,而且这些字段默认值为0000-00-00 00:00:00',但是,这些默认值在jvm中认为是不合法的,从而导致启动出错解决方法网址:https://blog.csdn.net/u010773667/article/details/51014306 ...原创 2018-12-28 10:46:29 · 836 阅读 · 0 评论 -
在使用wangEditor富文本编辑器插入图片时,报的错org.springframework.web.multipart.support.MissingServletRequestPartExcep
报错显示:org.springframework.web.multipart.support.MissingServletRequestPartException: Required request part 'file' is not present接收上传图片的controller如下: @PostMapping("/image") public UploadRe...原创 2019-01-25 18:01:33 · 2352 阅读 · 0 评论 -
org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResu
最近在练习一个demo时,重写一个内容发帖功能时,遇到的问题。这是报错的日志org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errorsField error in object 'posts' on field 'conten...原创 2019-01-21 22:07:32 · 11741 阅读 · 0 评论 -
在centos7环境下启动docker报错
报错信息如下:Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.根据提示命令:systemctl status docker.ser...原创 2019-08-18 23:06:28 · 485 阅读 · 0 评论