I have an application that requires me to set a system property during startup, and the property must be different in each environment (i.e. one value in Dev, a different value in Prod).
This is similar to another unanswered question, but that one asks specifically about daemons, and we are using Program scripts. The solution may be the same, though I did find hints that there may be special treatment for JSW daemons. The unix template has a placeholder for @ENV_SETUP@
, and the documentation says that environmentSetupFileName is for JSW only. I would consider using environmentSetupFileName, but I can't find any more information on how to use it or how to get other scripts in the bin directory where environmentSetupFileName expects them to be.
This seems like it must be a common problem, and I'm surprised the answer isn't easier to find. How can I set environment-specific system properties with AppAssembler?
First I have to say your assumption that the environment setup file is only for JSW is simply not correct. The doc says:
The notion of JSW is only related to the Note which means you can define special variables to override the wrapper configuration files. I think this should be improved (created a ticket for that).
The definition of the environment setup file is only to say that the generated scripts will call that given setup file. If you like to add other files into the bin file than it's your turn.
Furthermore if you understand your requirement correct you need to create different packages Dev, Prod etc. where the values are different. This means you need to create a package for Dev and a package for Prod. This means several executions for appassembler-maven-plugin etc. and may be maven-assembly-plugin to create an appropriate archive of the result.