Newer
Older
task-bldg / src / main / resources / application.properties
@haya4 haya4 on 3 Aug 2022 445 bytes i18n
# 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