Newer
Older
task-bldg / src / main / resources / application.properties
@haya4 haya4 on 8 Aug 2022 502 bytes Merge branch 'master' into context
  1. server.servlet.context-path=/task-bldg
  2. server.port=8083
  3.  
  4. # i18n
  5. spring.messages.fallback-to-system-locale=false
  6. spring.messages.basename=i18n/messages
  7.  
  8. # DataSource
  9. spring.datasource.url=jdbc:h2:./taskdb
  10. spring.datasource.username=admin
  11. spring.datasource.password=password
  12. spring.datasource.generate-unique-name=false
  13.  
  14. # JPA
  15. spring.h2.console.enabled=true
  16. spring.h2.console.path=/h2-console
  17. spring.h2.console.settings.web-allow-others=true
  18. spring.jpa.show-sql=true
  19. spring.jpa.hibernate.ddl-auto=update