spring boot之yml檔案配置
阿新 • • 發佈:2019-01-10
需要注意的是:
編輯yml檔案時不能使用TAB鍵來縮排,否則啟動會報錯。
鍵值之間需要一個空格,比如enabled: true 即true前面其實是有一個空格的,否則會報錯。
1、h2資料庫的配置:
2、設定執行時控制檯是否實時顯示sql操作,以及是否執行通過ddl檔案自動更新表結構到資料庫。h2: console: enabled: true path: '/h2' datasource: driver-class-name: org.h2.Driver url: 'jdbc:h2:tcp://localhost/~/oai' username: sa password: '' continue-on-error: true tomcat.max-wait: 5000 tomcat.test-on-borrow: true schema: 'classpath:ddl/oai.ddl'
jpa:
show-sql: true
hibernate:
ddl-auto: update