Hardcoding policies
As of version 2143 configuration values can be hardcoded, to ensure easy database replication from live back to test.
Typical fixed parameters include
- Application name
- Server daemon autostart
- SMTP server testmode
- Base schema name
Usage notes
- Place in the context file of the application
- Tomcat: <server root>/conf/Catalina/localhost/<application>.xml
- The syntax for naming is: "Policy." + configuration name
- Boolean values use: [true|false]
Example
<?xml version="1.0" encoding="UTF-8"?>
<Context path="/TempusServa" >
<Parameter name="Policy.applicationName" value="Test server"/>
<Parameter name="Policy.smtpTestMode" value="true"/>
<Parameter name="Policy.dbNameBase" value="sandboxtest"/>
/* More configuration values */
/* Connection strings etc. */
</Context>