#server.context-path=/demo # 使用するデータソースのクラス名(省略した場合と同じ設定) #spring.datasource.type=com.zaxxer.hikari.HikariDataSource # データベースドライバのクラス名 spring.datasource.driver-class-name=org.h2.Driver # JDBCでの接続URL spring.datasource.url=jdbc:h2:mem:jerseydemodb #;DB_CLOSE_ON_EXIT=FALSE # データベースへの接続ユーザ spring.datasource.username=jerseydemouser # データベースへの接続パスワード spring.datasource.password=jerseydemo1234 # 初期化を行うかの指定 spring.datasource.initialization-mode=always # 初期化を行う際のDDLの実行モード spring.jpa.hibernate.ddl-auto=update #spring.jpa.database-platform=org.hibernate.dialect.H2Dialect #spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.H2Dialect #h2 for debug tool spring.h2.console.enabled=true