spring boot配置文件application.properties配置JPA以及数据源
Posted z-x-p
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot配置文件application.properties配置JPA以及数据源相关的知识,希望对你有一定的参考价值。
1.application.properties配置jpa模板
spring.datasource.url=jdbc:mysql://localhost:3306/springboottest?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=Zp970321
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#jpa setting
spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
注意:url上一定要加上时区serverTimezone=UTC ,否则会报错。
当使用JPA访问数据库时,一定要设置数据库方言
2.application.properties配置Druid数据源
springboot的默认数据源:org.apache.tomcat.jdbc.pool.DateSource
修改数据源为Druid的配置如下:
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
常用的数据源属性配置如下:
spring.datasource.initSize=5
spring.datasource.minIdle=5
spring.datasource.maxActive=20
spring.datasource.maxWait=6000
spring.datasource.timeBetweenEvictionRunsMillis=60000
spring.datasource.minEvictableIdleTimeMillis=300000
以上是关于spring boot配置文件application.properties配置JPA以及数据源的主要内容,如果未能解决你的问题,请参考以下文章
在eclipse中将Spring Boot应用程序导出为JAR文件
Spring boot 一个jar进程运行多个容器或者运行多个Application
IntelliJ 中的 Gradle Spring Boot 应用程序无法识别 WEB-INF 文件夹中的 Web 资源