idea中的spring boot 如何连接数据库

在application.yml中添加如下代码

idea中的spring boot 如何连接数据库_第1张图片

Spring:
  datasource:
    username: root
    password: root
    //student 是数据库的库名 可自行更改
    url: jdbc:mysql://localhost:3306/student?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver

Server:
  port: 8080

你可能感兴趣的:(Springboot框架,springboot)