Hi,
I've build an Initialize-class which reads in several
.properties-files. What i want is that when Tomcat
starts and my webapplication is started, that the
Initialize-class is called so that it can read in alle
the .properties-files.
How do i tell Tomcat (or my webapp) to initialize this
class (to call the initialize-method) and where do i
need to specify these .properties-files? For example i
defined a static String:
PROPERTIESFILE_NAME =
"application.initializer.configuratie";
in my initialize-class. This String should somewhere
be defined as application.initializer.configuratie=
application.properties. I should be able to read the
content of this file through:
String propertiesfileName =
System.getProperty(Initializer.PROPERTIESFILE_NAME);
But i'm not sure how to call/initialize the class and
where to place/define the .properties-files. Hope
someone can help me.
Thanks,
Maarten
__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com
--
To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-user-help@jakarta.apache.org>
|