private support for your internal/customer projects ... custom extensions and distributions ... versioned snapshots for indefinite support ... scalability guidance for your apps and Ajax/Comet projects ... development services from 1 day to full product delivery
Configuring Multiple WebApp Source Directory
|
available since jetty-6.1.12 and jetty-7.0.0pre3 |
It can be configured by passing Resource[], String[], or String (csv) in the constructor.
The primary resource(first in the list) is the main resource.
WEB-INF/lib and WEB-INF/classes are merged.
This basically means your dependent classes on webappA will be available in the classpath for webappB.
This feature enables webapp overlays.
Configuration in context.xml
Configuration in jetty-maven-plugin
|
When maven fails to dependency-inject overloaded resources, use: Note that for the other webapp sources, you can add them to the plugin's extra scan targets for dynamic reload. |
Overlays
The order would then be:
<resources>webappY/src/main/webapp, webappX/src/main/webapp</resources>