You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jspwiki.apache.org by "Harry Metske (JIRA)" <ji...@apache.org> on 2009/06/03 19:12:07 UTC

[jira] Commented: (JSPWIKI-568) jspwiki.propertyfile cannot be defined as system property (like cascading properties)

    [ https://issues.apache.org/jira/browse/JSPWIKI-568?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12715991#action_12715991 ] 

Harry Metske commented on JSPWIKI-568:
--------------------------------------

+1 from me for the idea. 
I always like to have environment parameters outside an ear or war file.

> 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
>         Attachments: JSPWIKI-568.patch
>
>
> 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.