2016-07-16 01:38:48 +03:00
|
|
|
server.port=8080
|
2015-06-02 20:29:02 +05:30
|
|
|
server.contextPath=/springbootapp
|
2015-05-30 16:27:09 +05:30
|
|
|
management.port=8081
|
|
|
|
|
management.address=127.0.0.1
|
2017-04-04 15:58:51 +05:30
|
|
|
#debug=true
|
|
|
|
|
spring.jpa.show-sql=true
|
|
|
|
|
spring.jpa.hibernate.ddl-auto = update
|
2015-05-30 16:27:09 +05:30
|
|
|
endpoints.shutdown.enabled=true
|
|
|
|
|
|
|
|
|
|
endpoints.jmx.domain=Spring Sample Application
|
|
|
|
|
endpoints.jmx.uniqueNames=true
|
|
|
|
|
|
|
|
|
|
##jolokia.config.debug=true
|
|
|
|
|
##endpoints.jolokia.enabled=true
|
|
|
|
|
##endpoints.jolokia.path=jolokia
|
|
|
|
|
|
|
|
|
|
spring.jmx.enabled=true
|
|
|
|
|
endpoints.jmx.enabled=true
|
|
|
|
|
|
|
|
|
|
## for pretty printing of json when endpoints accessed over HTTP
|
|
|
|
|
http.mappers.jsonPrettyPrint=true
|
|
|
|
|
|
|
|
|
|
## Configuring info endpoint
|
|
|
|
|
info.app.name=Spring Sample Application
|
|
|
|
|
info.app.description=This is my first spring boot application G1
|
|
|
|
|
info.app.version=1.0.0
|
2017-04-04 15:58:51 +05:30
|
|
|
info.java-vendor = ${java.specification.vendor}
|
2015-05-30 16:27:09 +05:30
|
|
|
|
|
|
|
|
## Spring Security Configurations
|
|
|
|
|
security.user.name=admin1
|
|
|
|
|
security.user.password=secret1
|
2016-08-15 11:33:21 +02:00
|
|
|
management.security.role=SUPERUSER
|
|
|
|
|
|
2017-03-01 22:29:55 -06:00
|
|
|
logging.level.org.springframework=INFO
|
|
|
|
|
|
|
|
|
|
#Servlet Configuration
|
|
|
|
|
servlet.name=dispatcherExample
|
|
|
|
|
servlet.mapping=/dispatcherExampleURL
|
2017-03-15 18:11:43 +05:30
|
|
|
|
|
|
|
|
#banner.charset=UTF-8
|
|
|
|
|
#banner.location=classpath:banner.txt
|
|
|
|
|
#banner.image.location=classpath:banner.gif
|
|
|
|
|
#banner.image.width= //TODO
|
|
|
|
|
#banner.image.height= //TODO
|
|
|
|
|
#banner.image.margin= //TODO
|
2017-04-14 08:14:44 +03:00
|
|
|
#banner.image.invert= //TODO
|
|
|
|
|
|
|
|
|
|
contactInfoType=email
|