Java教程

SpringBoot中使用SpringDataJPA+MySQL8 配置

本文主要是介绍SpringBoot中使用SpringDataJPA+MySQL8 配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

下面是application.properties文件

## 数据源配置

spring.datasource.url=jdbc:mysql://localhost:3306/test?characterEncoding=utf-8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
spring.datasource.username=root
spring.datasource.password=admin
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

##Spring Data JPA 配置
spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
## 运行时输出 jpa 执行的 sql 语句

spring.jpa.show-sql=true
## 根据实体类自动生成数据表(SpringDataJPA可以自动生成数据表)
## create:每次运行项目会自动创建新表,如果之前已经存在,则删除,重新创建
## update:只会更新数据表
spring.jpa.hibernate.ddl-auto=update
#jackson对日期时间格式化设置:时间格式
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
#jackson对日期时间格式化设置:时区设置
spring.jackson.time-zone=GMT+8

避个坑

spring.datasource.username=root

spring.datasource.password=admin

这个地方的配置一定注意不要有空格 有空格就会报 java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES) 这个错误

如果确定密码正确的情况下,就查看一下这个地方是否有错误。

浪费了半天时间,结果是这个地方多了空格。。。。。

这篇关于SpringBoot中使用SpringDataJPA+MySQL8 配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!