I am wondering if it's possible to add spring's additional parameters such as -Dspring.profiles.active=prod
to spring boot app in case of running it as a service.
I checked the script that was generated automatically by spring-boot-maven-plugin
:
command="$javaexe -jar -Dsun.misc.URLClassPath.disableJarChecking=true $jarfile $@"
so maybe it can be done via maven plugin's options, but couldn't find any except of JVM arguments which is not so useful...