springboot连接mysql数据库配置文件

springboot连接mysql数据库配置文件:

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:一定记得设置时区!!!

在配置application.yml文件的时候,还要在pom.xml文件添加依赖:

        
        
            org.springframework.boot
            spring-boot-starter-jdbc
        

        
            mysql
            mysql-connector-java
            runtime
        

你可能感兴趣的:(笔记,mysql,数据库,spring,boot)