- SpringBoot application.propertie
- SpringBoot application.propertie
- springboot application.propertie
- SpringBoot2.0文章汇总目录,java多线程教程文章汇
- 【SpringBoot2.0系列05】SpringBoot之整合
- 【SpringBoot2.0系列04】SpringBoot之使用
- 【SpringBoot2.0系列03】SpringBoot之使用
- 【SpringBoot2.0系列02】SpringBoot之使用
- 【SpringBoot2.0系列11】SpringBoot之@E
- Java程序员力荐的PDF文档——深入浅出springboot,
MySQL5
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/db_name?useSSL=false
spring.datasource.username=root
spring.datasource.password=password
MySQL8 以上(springboot 2.1)
springboot 2.1 集成了8 以上的驱动
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/db_name?useSSL=false&serverTimeZone=GMT%2B8
spring.datasource.username=root
spring.datasource.password=password
网友评论