RE: Tomcat and system properties

2003-07-22 Thread Bodycombe, Andrew
Yes. System properties are set for the JVM not each individual web application. http://java.sun.com/docs/books/tutorial/essential/system/properties.html If you require properties specific to your web application, you should use Servlet initialization parameters or ServletContext Initialization

Re: Tomcat and system properties

2003-07-22 Thread Tim Funk
Thats why its a System property. Its global to the JVM. If you want individual configuration options for your webapp then either: - Place them in web.xml as init parameters - Use JNDI and set the config items in server.xml (or appropriate) -Tim Olivier Jouny wrote: Hi all, The system