springboot链接mysql

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://ip:3306/MyLeading?useSSL=true
    username: MyLeading
    password: *******
  jpa:
    show-sql: true
    hibernate:
      ddl-auto: update
    database-platform: org.hibernate.dialect.MySQL5InnoDBDialect  #不加这句则默认为myisam引擎
server:
  port: 8090

你可能感兴趣的:(springboot链接mysql)