Scott Ferguson schrieb: > On Aug 28, 2009, at 3:14 AM, Michael Ludwig wrote: >> Alex schrieb: >>>>> <web-app> >>>>> <system-property >>>>> javax.xml.stream.XMLInputFactory="org.codehaus.stax2.XMLInputFactory2"/> >>>>> </web-app> >>>> But wouldn't that set the property for the entire JVM instead of >>>> for one particular webapp/ >>> Not if you supply your own context aware instance of Properties >>> using System.setProperties(Properties).
>> What is a context-aware instance of Properties? How do I get one? >> >> Wouldn't I rather need a context-aware instance of System (which I >> don't know about)? > > If you're using Resin, you already have one. Resin's system > properties depend on the current context. I deployed one webapp doing System.setProperties(props) in contextInitialized(ServletContextEvent sce) to /yyy in Resin 4.0.0. I then changed the property value and redeployed to /yyy2. Now both /yyy and /yyy2 show the new property value. They do not seem to be isolated regarding System properties. I'm probably missing something obvious. -- Michael Ludwig _______________________________________________ resin-interest mailing list [email protected] http://maillist.caucho.com/mailman/listinfo/resin-interest
