mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-03-02 11:51:14 +00:00
#164 Spring Boot version of Petclinic ready to deploy to an external web container (ie Tomcat)
This commit is contained in:
parent
76a4ca330b
commit
a6e81a51a0
66 changed files with 385 additions and 1964 deletions
23
src/main/resources/application.properties
Normal file
23
src/main/resources/application.properties
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# Web
|
||||
spring.mvc.view.prefix: /WEB-INF/jsp/
|
||||
spring.mvc.view.suffix: .jsp
|
||||
|
||||
|
||||
# JPA
|
||||
spring.jpa.hibernate.ddl-auto: none
|
||||
#spring.jpa.database: HSQL
|
||||
#spring.jpa.show-sql: true
|
||||
#spring.datasource.driverClassName=org.hsqldb.jdbcDriver
|
||||
spring.datasource.schema: classpath*:db/hsqldb/initDB.sql
|
||||
spring.datasource.data: classpath*:db/hsqldb/populateDB.sql
|
||||
#spring.datasource.username: sa
|
||||
#spring.datasource.password:
|
||||
|
||||
# Internationalization
|
||||
spring.messages.basename: messages/messages
|
||||
|
||||
# Actuator / Management
|
||||
management.contextPath: /manage
|
||||
|
||||
# Logging
|
||||
logging.level.org.springframework=INFO
|
||||
Loading…
Add table
Add a link
Reference in a new issue