Is there a way to add the build id to the Manifest file of an EAR? I have tried adding variables, and I “think” I have added the Maven Options that I would normally put on the command line to set variables in my POM. BUt nothing seems to work. Answer The Build.BuildId is a predefined variable and it’s the
Tag: devops
Can I choose to include/exclude what controller is deployed per environment in Spring Boot?
I would like to expose an endpoint only to certain TEST environment and leave it out altogether in PROD. I will have a separate @RestController for this endpoint. My question is how to ensure this …