Package net.i2p.router.web
Class WebAppConfiguration
java.lang.Object
net.i2p.router.web.WebAppConfiguration
- All Implemented Interfaces:
Configuration
Add to the webapp classpath as specified in webapps.config.
This allows us to reference classes that are not in the classpath
specified in wrapper.config, since old installations have
individual jars and not lib/*.jar specified in wrapper.config.
A sample line in webapps.config is:
webapps.appname.classpath=foo.jar,$I2P/lib/bar.jar
Unless $I2P is specified the path will be relative to $I2P/lib for
webapps in the installation and appDir/plugins/appname/lib for plugins.
Sadly, setting Class-Path in MANIFEST.MF doesn't work for jetty wars.
We could look there ourselves, or look for another properties file in the war,
but let's just do it in webapps.config.
No, wac.addClassPath() does not work. For more info see:
http://servlets.com/archive/servlet/ReadMsg?msgId=511113&listName=jetty-support
- Since:
- 0.7.12
- Author:
- zzz
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.jetty.webapp.Configuration
Configuration.ClassList
-
Field Summary
Fields inherited from interface org.eclipse.jetty.webapp.Configuration
ATTR
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cloneConfigure
(WebAppContext template, WebAppContext context) void
configure
(WebAppContext context) void
deconfigure
(WebAppContext context) void
destroy
(WebAppContext context) void
postConfigure
(WebAppContext context) void
preConfigure
(WebAppContext context)
-
Constructor Details
-
WebAppConfiguration
public WebAppConfiguration()
-
-
Method Details
-
deconfigure
- Specified by:
deconfigure
in interfaceConfiguration
- Since:
- Jetty 7
-
configure
- Specified by:
configure
in interfaceConfiguration
- Throws:
Exception
- Since:
- Jetty 7
-
cloneConfigure
- Specified by:
cloneConfigure
in interfaceConfiguration
- Since:
- Jetty 7
-
destroy
- Specified by:
destroy
in interfaceConfiguration
- Since:
- Jetty 7
-
preConfigure
- Specified by:
preConfigure
in interfaceConfiguration
- Since:
- Jetty 7
-
postConfigure
- Specified by:
postConfigure
in interfaceConfiguration
- Since:
- Jetty 7
-