a4f4301196
* yasin.bhojawala@gmail.com Evaluation article on Different Types of Bean Injection in Spring * Revert "yasin.bhojawala@gmail.com" This reverts commit 963cc51a7a15b75b550108fe4e198cd65a274032. * Fixing compilation error and removing unused import * Introduction to Java9 StackWalking API - yasin.bhojawala@gmail.com Code examples for the article "Introduction to Java9 StackWalking API" * BAEL-608 Introduction to Java9 StackWalking API * BAEL-608 Introduction to Java9 StackWalking API changing the test names to BDD style * BAEL-608 Introduction to Java9 StackWalking API correcting the typo * BAEL-608 Introduction to Java9 StackWalking API improving method names * BAEL-608 Introduction to Java9 StackWalking API test method names improvements * BAEL-718 Quick intro to javatuples * merging pom from master * BAEL-722 Intro to JSONassert * BAEL-722 Intro to JSONassert Updated to 1.5.0 * BAEL-745 Quick Math.pow example * BAEL-729 Adding custom info to actuator's /info endpoint
46 lines
1.2 KiB
Properties
46 lines
1.2 KiB
Properties
server.port=8080
|
|
server.contextPath=/springbootapp
|
|
management.port=8081
|
|
management.address=127.0.0.1
|
|
#debug=true
|
|
spring.jpa.show-sql=true
|
|
spring.jpa.hibernate.ddl-auto = update
|
|
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
|
|
info.java-vendor = ${java.specification.vendor}
|
|
|
|
## Spring Security Configurations
|
|
security.user.name=admin1
|
|
security.user.password=secret1
|
|
management.security.role=SUPERUSER
|
|
|
|
logging.level.org.springframework=INFO
|
|
|
|
#Servlet Configuration
|
|
servlet.name=dispatcherExample
|
|
servlet.mapping=/dispatcherExampleURL
|
|
|
|
#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
|
|
#banner.image.invert= //TODO |