Spring boot + JPA application.properties配置文件

  • Post author:
  • Post category:其他


############################################
##  MySQL数据库连接
############################################
spring.datasource.url = jdbc:mysql://localhost:3306/xx_db?useUnicode=true&characterEncoding=utf8&useSSL=false
spring.datasource.username = root
spring.datasource.password = 123456
spring.datasource.driverClassName = com.mysql.jdbc.Driver
############################################
##  配置自动建表:updata:没有表新建,有表更新操作,控制台显示建表语句
############################################
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true



版权声明:本文为SaQiMa1原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。