2016-06-27 12:35:37 +08:00
|
|
|
# database init, supports mysql too
|
|
|
|
|
database=hsqldb
|
|
|
|
|
spring.datasource.schema=classpath*:db/${database}/schema.sql
|
|
|
|
|
spring.datasource.data=classpath*:db/${database}/data.sql
|
2016-06-17 18:38:24 +02:00
|
|
|
|
2016-06-27 12:35:37 +08:00
|
|
|
# Web
|
2016-11-10 16:51:14 +00:00
|
|
|
spring.thymeleaf.mode=HTML
|
2016-06-17 18:38:24 +02:00
|
|
|
|
|
|
|
|
# JPA
|
2016-06-27 12:35:37 +08:00
|
|
|
spring.jpa.hibernate.ddl-auto=none
|
2016-06-17 18:38:24 +02:00
|
|
|
|
|
|
|
|
# Internationalization
|
2016-06-27 12:35:37 +08:00
|
|
|
spring.messages.basename=messages/messages
|
2016-06-17 18:38:24 +02:00
|
|
|
|
|
|
|
|
# Actuator / Management
|
2016-06-27 12:35:37 +08:00
|
|
|
management.contextPath=/manage
|
2016-06-17 18:38:24 +02:00
|
|
|
|
|
|
|
|
# Logging
|
|
|
|
|
logging.level.org.springframework=INFO
|
2016-11-10 16:51:14 +00:00
|
|
|
logging.level.org.springframework.web=DEBUG
|
2016-06-24 21:18:38 +02:00
|
|
|
|
|
|
|
|
# Active Spring profiles
|
|
|
|
|
spring.profiles.active=production
|