mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-12-27 19:07:28 +00:00
25 lines
644 B
Properties
25 lines
644 B
Properties
# database init, supports mysql too
|
|
database=hsqldb
|
|
spring.datasource.schema=classpath*:db/${database}/schema.sql
|
|
spring.datasource.data=classpath*:db/${database}/data.sql
|
|
|
|
# Web
|
|
spring.thymeleaf.mode=HTML
|
|
|
|
# JPA
|
|
spring.jpa.hibernate.ddl-auto=none
|
|
|
|
# Internationalization
|
|
spring.messages.basename=messages/messages
|
|
|
|
# Actuator / Management
|
|
management.endpoints.web.base-path=/manage
|
|
management.endpoints.web.exposure.include=*
|
|
|
|
# Logging
|
|
logging.level.org.springframework=INFO
|
|
# logging.level.org.springframework.web=DEBUG
|
|
# logging.level.org.springframework.context.annotation=TRACE
|
|
|
|
# Active Spring profiles
|
|
spring.profiles.active=production
|