Newer
Older
task-bldg / src / main / resources / application.properties
@haya4 haya4 on 8 Aug 2022 502 bytes Merge branch 'master' into context
server.servlet.context-path=/task-bldg
server.port=8083

# i18n
spring.messages.fallback-to-system-locale=false
spring.messages.basename=i18n/messages

# DataSource
spring.datasource.url=jdbc:h2:./taskdb
spring.datasource.username=admin
spring.datasource.password=password
spring.datasource.generate-unique-name=false

# JPA
spring.h2.console.enabled=true
spring.h2.console.path=/h2-console
spring.h2.console.settings.web-allow-others=true
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=update