美文网首页
springboot链接mysql

springboot链接mysql

作者: 厚颜无齿 | 来源:发表于2019-10-15 00:44 被阅读0次
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

      本文链接:https://www.haomeiwen.com/subject/fkcjmctx.html