SpringBoot配置文件application.properties数据库配置

Posted 互联网技术开发者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot配置文件application.properties数据库配置相关的知识,希望对你有一定的参考价值。

 1 #DB Configuration
 2 spring.datasource.driver-class-name=com.mysql.jdbc.Driver
 3 spring.datasource.url=jdbc:mysql://127.0.0.1:3306/user?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone = GMT
 4 spring.datasource.username=root
 5 spring.datasource.password=root
 6 # JPAConfiguration
 7 spring.jpa.database=MySQL
 8 #将show-sql改成true,log才会输出sql语句,便于调试。
 9 #generate-ddl: false表示sping启动的时候不自动生成增删改查接口(因为##我们自己会写增删改查接口),
10 spring.jpa.show-sql=true
11 spring.jpa.generate-ddl=true

SpringBoot配置文件中的数据库配置

以上是关于SpringBoot配置文件application.properties数据库配置的主要内容,如果未能解决你的问题,请参考以下文章

springboot之配置文件application

springboot 配置文件application

微服务之springboot 自定义配置Application.properties文件

SpringBoot-04-配置文件(IEDA)

第四章 SpringBoot配置文件

SpringBoot的配置文件 —— SpringBoot