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

【SpringBoot配置文件application.properties数据库配置】天下之事常成于困约,而败于奢靡。这篇文章主要讲述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配置文件中的数据库配置

    推荐阅读