Skip to content

Instantly share code, notes, and snippets.

@romilptl
Last active March 9, 2020 12:35
Show Gist options
  • Save romilptl/66f977e7001cc6f6cd75d8065275b164 to your computer and use it in GitHub Desktop.
Save romilptl/66f977e7001cc6f6cd75d8065275b164 to your computer and use it in GitHub Desktop.
System configuration, JVM details, property configuration such as database, security, management, etc of the deployed Application
{
"activeProfiles": [],
"name": "systemProperties",
"properties": {
"sun.boot.library.path": {
"value": "C:\\ProgramFiles\\Java\\jdk1.8.0_201\\jre\\bin"
},
"java.vm.version": {
"value": "25.201-b09"
},
"user.country": {
"value": "IN"
},
"PID": {
"value": "8164"
},
"os.arch": {
"value": "amd64"
},
"os.name": {
"value": "Windows 10"
},
"user.timezone": {
"value": "Asia/Calcutta"
},
"name": "applicationConfig: [classpath:/application.properties]",
"properties": {
"server.port": {
"value": "8080",
"origin": "class path resource [application.properties]:1:15"
},
"spring.boot.admin.api-path": {
"value": "/instances",
"origin": "class path resource [application.properties]:5:30"
},
"spring.boot.admin.client.url": {
"value": "http://localhost:6699",
"origin": "class path resource [application.properties]:6:32"
},
"management.endpoint.metrics.enabled": {
"value": "true",
"origin": "class path resource [application.properties]:9:39"
},
"management.endpoints.web.exposure.include": {
"value": "* ",
"origin": "class path resource [application.properties]:10:45"
},
"management.endpoint.metrics.show-details": {
"value": "always",
"origin": "class path resource [application.properties]:11:44"
},
"management.endpoint.health.show-details": {
"value": "always",
"origin": "class path resource [application.properties]:12:41"
},
"spring.datasource.platform": {
"value": "mysql",
"origin": "class path resource [application.properties]:15:28"
},
"spring.datasource.url": {
"value": "jdbc:mysql://localhost:3306/annotations?createDatabaseIfNotExist=true",
"origin": "class path resource [application.properties]:16:23"
},
"spring.datasource.username": {
"value": "root",
"origin": "class path resource [application.properties]:17:28"
},
"spring.datasource.password": {
"value": "******",
"origin": "class path resource [application.properties]:19:0"
},
"spring.datasource.driver-class-name": {
"value": "com.mysql.cj.jdbc.Driver",
"origin": "class path resource [application.properties]:19:37"
},
"spring.jpa.hibernate.ddl-auto": {
"value": "update",
"origin": "class path resource [application.properties]:22:31"
},
"spring.jpa.properties.hibernate.dialect": {
"value": "org.hibernate.dialect.MySQL5Dialect",
"origin": "class path resource [application.properties]:23:43"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment