Spring Boot ERROR
Spring Boot ERROR
紫金小飞侠
这个作者很懒,什么都没留下…
展开
-
import 之后找不到对应方法
原创 2020-01-07 15:52:16 · 596 阅读 · 0 评论 -
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.翻译就是:无法配置DataSource:未指定'url'属性,也无法配置嵌入数据源。很明显,就是你在应用中没有配置datasource的一些相关属性,例如:地址值啊...原创 2020-01-07 15:30:40 · 5915 阅读 · 0 评论 -
Spring Boot 调试错误
1.模糊映射。不能映射“httpClient”方法错误原因:URL映射有重复的2.代码中可能的错误:请求可能的错误:原创 2020-01-07 11:02:13 · 250 阅读 · 0 评论 -
java: 无法将接口 org.springframework.data.repository.query.QueryByExampleExecutor<T>中的方法
errors log:Error:(43, 30) java: 无法将接口 org.springframework.data.repository.query.QueryByExampleExecutor<T>中的方法 findOne应用到给定类型; 需要: org.springframework.data.domain.Example<S> 找到: long...原创 2019-12-29 16:34:26 · 7196 阅读 · 0 评论 -
SpringData+JPA+mysql 8, cannot be null when 'hibernate.dialect' not set
SpringData+JPA+mysql 8, 报错 cannot be null when 'hibernate.dialect' not set是因为Hibernate SQL方言没有设置导致的,在properties文件中增加下面这行:spring.jpa.database-platform=org.hibernate.dialect.MySQLDialectspring...原创 2019-12-27 11:09:54 · 1933 阅读 · 1 评论 -
SpringData+JPA+mysql 8,数据库总是自动创建 hibernate_sequence 表
SpringData+JPA mysql数据库总是自动创建 hibernate_sequence 表解决办法:把GeneratedValue(strategy = GenerationType.AUTO)改为@GeneratedValue(strategy = GenerationType.IDENTITY)...原创 2019-12-27 10:33:28 · 462 阅读 · 0 评论 -
Spring Boot+jar使用mysql 8出现错误:Access denied for user 'root'@'localhost' (using password: YES)
Spring Boot+jar使用mysql 8出现错误:Access denied for user 'root'@'localhost' (using password: YES)数据库的用户名或者密码错误原创 2019-12-27 10:11:48 · 416 阅读 · 0 评论 -
Spring Boot+jar使用mysql 8出现错误: Unable to open JDBC Connection for DDL execution
在已经引入mysql依赖,且使用的数据库版本为mysql 6以上版本。 Spring Boot+jar使用mysql 8出现错误:Unable to open JDBC Connection for DDL execution是因为版本导致的时区问题,使用5.7以下则不会报错,解决办法:数据库url中地址要配置“serverTimezone=UTC”M...原创 2019-12-27 09:55:58 · 3723 阅读 · 1 评论 -
请求返回错误码
错误码:404返回404错误说明端口号正确,没有找到对应java类或者方法输出东西。访问out方法输出“success”字符串错误码:405请求类型不支持...原创 2019-12-26 09:45:18 · 183 阅读 · 0 评论