https://github.com/rishant/springboot-application-profile-poc
springboot application profile or profiling poc
https://github.com/rishant/springboot-application-profile-poc
Last synced: 10 months ago
JSON representation
springboot application profile or profiling poc
- Host: GitHub
- URL: https://github.com/rishant/springboot-application-profile-poc
- Owner: rishant
- Created: 2024-10-17T19:37:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-17T20:07:13.000Z (over 1 year ago)
- Last Synced: 2024-10-20T05:50:08.567Z (over 1 year ago)
- Language: Java
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# springboot-application-profile-poc
### Using Command Line Arguments
java -jar MySpringApp.jar --spring.profiles.active=prod
### External: Using Command Line Arguments
java -jar MySpringApp.jar --spring.config.location=file:/path/to/external/application.yaml
### External: Multiple External Configuration Files
java -jar MySpringApp.jar --spring.config.location=file:/path/to/external/application-dev.yaml,file:/path/to/external/application-prod.yaml
### External: External Configuration Folder (Optional)
java -jar MySpringApp.jar --spring.config.location=file:/path/to/external/