32 lines
833 B
Properties
32 lines
833 B
Properties
server.port=8080
|
|
server.contextPath=/springbootapp
|
|
management.port=8081
|
|
management.address=127.0.0.1
|
|
|
|
endpoints.shutdown.enabled=true
|
|
|
|
endpoints.jmx.domain=Spring Sample Application
|
|
endpoints.jmx.uniqueNames=true
|
|
|
|
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
|
|
|
|
## Spring Security Configurations
|
|
security.user.name=admin1
|
|
security.user.password=secret1
|
|
management.security.role=SUPERUSER
|
|
|
|
logging.level.org.springframework=INFO
|
|
|
|
#AWS Keys
|
|
amazon.dynamodb.endpoint=http://localhost:8000/
|
|
amazon.aws.accesskey=test1
|
|
amazon.aws.secretkey=test1 |