数据库配置

/ Java / 0 条评论 / 329浏览

这个驱动时mysql6+的驱动 # 数据库驱动 spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

# 数据库连接URL spring.datasource.url=jdbc:mysql://localhost:3306/your_database?useSSL=false&serverTimezone=UTC

# 数据库用户名 spring.datasource.username=root

# 数据库密码 spring.datasource.password=yourpassword

# JPA配置 spring.jpa.hibernate.ddl-auto=update spring.jpa.show-sql=true spring.jpa.properties.hibernate.format_sql=true

此外:如果connection 连接不上database的话重新加载