mirror of
https://github.com/jlengrand/spring-petclinic.git
synced 2026-03-10 08:41:24 +00:00
24 lines
519 B
Properties
24 lines
519 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.mvc.view.prefix=/WEB-INF/jsp/
|
|
spring.mvc.view.suffix=.jsp
|
|
|
|
# JPA
|
|
spring.jpa.hibernate.ddl-auto=none
|
|
|
|
# Internationalization
|
|
spring.messages.basename=messages/messages
|
|
|
|
# Actuator / Management
|
|
management.contextPath=/manage
|
|
|
|
# Logging
|
|
logging.level.org.springframework=INFO
|
|
|
|
# Active Spring profiles
|
|
spring.profiles.active=production
|