For convenience we have added support for a Java system parameter allowing specifying an extra directory holding configurations used in TIF.
This is especially a nice feature during development, since you do not have to deploy configurations from your source directory into the TIF config directory.
The name of this system property is extraConfigDirectory
and the value should be a path pointing to a directory.
In the Start script for TIF you could apply it like below:
export START_ARGS=-DextraConfigDirectory=/home/user/repos/test/cfg
...
|
This applies only to configuration files stored in ${TIF_ROOT}/modules/enovia/cfg .
Other configuration files cannot be overridden via this.
|
In addition, we have added two more properties:
Name |
Description |
configDirectory.webapp.enabled |
Can be used to disable loading configuration files from the webapplications WEB-INF/tvc folder (in case you reference the Web-app root dir in the start of TIF).
|
configDirectory.default.enabled |
Can be used to disable loading configurations from the default "cfg" folder.
|