How can I configure runtime properties (e.g. upload directory)?

by Alberto Molinaroli
6,730 views Published on Oct 24, 2011
Applies to: All versions
Table of contents

WebRatio provides some properties that define the information regarding the runtime of your web application. RTXConfig.properties file is the properties file where you can configure your preferences. The RTXConfig.properties file contains information that control your work directory where the application is deployed, the upload directory where the uploaded files are stored, the log directory where the log files are stored and the report directory where the report templates are stored.

To modify the default information open the RTXConfig.properties file that you can find in <outputPath>/WEB-INF/conf/RTXConfig.properties. The <outputPath> is the path you have specified in your Project and where the application is deployed. The output path is used to store the page templates built by the WebRatio code generator and the auxiliary XML files used by the WebRatio runtime services to execute the application.

The file lists two predefined properties:

  • redeployCheckInterval: The interval in millis of periodically check of the re-deploy directory. The set value is 5000.
redeployCheckInterval=5000
  • redeployDirectory: Sets the directory of the descriptors files to be redeployed. The default value is WEB-INF/descr.
redeployDirectory=WEB-INF/descr

The runtime properties you can set are:

  • workDirectory: Sets the path to the application work directory. If not specified, the default value is the absolute path to the sub-directory of the well-known JSP directory named webapps, where the application is deployed. For instance, it is the <webapps_loc> variable value you set as preference of your project. In case of WAR deploy, it is recommended to set this porperty.
workDirectory=<webapps_loc>/Acme

where <webapps_loc> is the path to your web application deployment directory.

  • logDirectory: Sets the directory designed to store log files. If not specified, the default value is WEB-INF/log path. If the property logDirectoryIsAbsolute is true, the value of this property must be a valid absolute path.
logDirectory=log
  • logDirectoryIsAbsolute: Specifies if the "logDirectory" value must be an absolute path. If not specified, the default value is false.
logDirectoryIsAbsolute=true
  • uploadDirectory: Sets the directory designed to store uploaded files. If not specified, the default value is upload path. If the property uploadDirectoryIsAbsolute is true, the value of this property must be a valid absolute path.
uploadDirectory=upload
  • uploadDirectoryIsAbsolute: Specifies if the "uploadDirectory" value must be an absolute path. If not specified, the default value is false.
uploadDirectoryIsAbsolute=true
  • reportDirectory: Sets the absolute directory designed to store the report templates used by the WebRatio extensions for reports generation. If not specified, the default value is the sub-directory WEB-INF/descr of the work directory.
reportDirectory=<webapps_loc>/Acme/Reports

where <webapps_loc> is the path to your web application deployment directory.