springboot2 中使用 H2数据库

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/weixx3/article/details/102642365

http://localhost:8881/h2-console/login.do

spring:
  datasource:
    url: jdbc:h2:~/test
    driver-class-name: org.h2.Driver
    username: sa
    password: 123456
    jpa:
      database: h2
      hibernate:
        ddl-auto: update
      show-sql: true
    h2:
      console:
        path: /h2-console
        enabled: true
server.port=8881
logging.level.org.hibernate=DEBUG

猜你喜欢

转载自blog.csdn.net/weixx3/article/details/102642365