Newer
Older
CosmosServer / src / main / resources / application.properties
n-kande on 13 Jun 2019 301 bytes H2データベース
  1. # datasource
  2. spring.datasource.driver-class-name=org.h2.Driver
  3. spring.datasource.url=jdbc:h2:mem:sampledb
  4. spring.datasource.username=sa
  5. spring.datasource.password=sa
  6.  
  7. # h2 for debug tool
  8. spring.h2.console.enabled=true
  9. spring.h2.console.path=/h2-console
  10. spring.h2.console.settings.web-allow-others=true