大家好,又见面了,我是你们的朋友全栈君。
spring:
datasource:
username: root
password: root
url: jdbc:mysql://localhost:3306/user_db?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC
driver-class-name: com.mysql.jdbc.Driver
我的数据库名字是user_db,用户名和密码都是root。
ps:一定记得设置时区!!!
<!--JDBC-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/152899.html原文链接:https://javaforall.cn