springboot项目的MySQL数据库连接配置

@[TOC]springboot项目配置文件application.properties-数据库连接配置

1.mysql 8.0+的配置

spring.datasource.url=jdbc:mysql://localhost:3306/使用的库名?serverTimezone=GMT%2B8
spring.datasource.username=root
spring.datasource.password=MySQL本地登录密码

2.MySQL8.0之前的配置文件

spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/使用的库名
spring.datasource.username=root
spring.datasource.password=MySQL本地登录密码

你可能感兴趣的:(springboot学习笔记,spring,java)