jspwiki.propertyfile cannot be defined as system property (like cascading
properties)
-------------------------------------------------------------------------------------
Key: JSPWIKI-568
URL: https://issues.apache.org/jira/browse/JSPWIKI-568
Project: JSPWiki
Issue Type: Improvement
Components: Core & storage
Affects Versions: 2.8.2
Reporter: Piotr Tarnowski
Priority: Trivial
I would like to define where the jspwiki.properties file is located outside of
web.xml with system properties, for example in /etc/default/tomcat5.5 as:
JAVA_OPTS=" -Djspwiki.propertyfile=/opt/jspwiki/jspwiki.properties"
having this after deploying new jspwiki.war I neither have to recreate
jspwiki.properties nor alter default web.xml
change is in single line:
--- branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/PropertyReader.java
2009-06-03 10:49:40.000000000 +0200
+++ JSPWiki-2.8.2/src/com/ecyrd/jspwiki/PropertyReader.java 2009-06-03
10:38:13.000000000 +0200
@@ -115,7 +115,7 @@
*/
public static Properties loadWebAppProps( ServletContext context )
{
- String propertyFile =
context.getInitParameter(PARAM_PROPERTYFILE);
+ String propertyFile = getInitParameter(context,
PARAM_PROPERTYFILE);
InputStream propertyStream = null;
try
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.