h 2データベースSpringbootでの設定方法
4681 ワード
build.勾配の設定
runtimeOnly 'com.h2database:h2'
アプリケーションyml設定
spring:
h2:
console:
enabled: true
jpa:
database-platform: org.hibernate.dialect.H2Dialect
open-in-view: false
hibernate:
ddl-auto: create
properties:
hibernate:
show_sql: true
format_sql: true
spring:
h2:
console:
enabled: true
datasource:
url: jdbc:h2:mem:testdb
driver-class-name: org.h2.Driver
hikari:
username: sa
password:
jpa:
database-platform: org.hibernate.dialect.H2Dialect
open-in-view: false
hibernate:
ddl-auto: create
properties:
hibernate:
show_sql: true
format_sql: true
プロジェクトを実行すると、Run consoleにJDBC URL
が表示されます.H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:26b18340-687a-410e-9653-c8c5acf95356'
まだあります.
http://localhost:8080/h2-console接続
Run consoleのJDBC URLを入力します.
いよいよh 2ライブに入ります.
Reference
この問題について(h 2データベースSpringbootでの設定方法), 我々は、より多くの情報をここで見つけました https://velog.io/@mooh2jj/h2-데이터베이스-설정하는-방법テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol