这是如何做到的。
首先,在您的 pom.xml 中,声明 webapp 文件夹的位置:
<build>
<resources>
<resource>
<directory>src/main</directory>
</resource>
</resources>
这是我的 src/main 目录的树:
├── java
│ └── com
│ └── myco
│ └── myapp
│ └── worker
│ ├── App.java
| ...
├── resources
│ ├── log4j.properties
│ └── version.properties
└── webapp
├── index.html
├── index.jsp
├── lib
│ ├── inc_meta.jsp
│ └── inc_navigation.jsp
├── query.html
├── scripts
│ ├── angular.min.js
│ └── bootstrap.min.css
├── showresults.jsp
├── status.jsp
└── WEB-INF
└── web.xml
在 pom.xml 文件中添加 Maven Shade 插件:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>uber-${artifactId}-${version}/finalName>
</configuration>
</plugin>
然后像这样启动 Jetty:
public static void startJetty() throws Exception {
logger.info("starting Jetty...");
Server server = new Server(8080);
WebAppContext webAppContext = new WebAppContext();
webAppContext.setContextPath("/");
/* Important: Use getResource */
String webxmlLocation = App.class.getResource("/webapp/WEB-INF/web.xml").toString();
webAppContext.setDescriptor(webxmlLocation);
/* Important: Use getResource */
String resLocation = App.class.getResource("/webapp").toString();
webAppContext.setResourceBase(resLocation);
webAppContext.setParentLoaderPriority(true);
server.setHandler(webAppContext);
server.start();
server.join();
}
重要的部分是使用<YourApp>.class.getResource(<your location>)
它将提供 jar 内文件的路径。错误的方法是这样做:webContext.setDescriptor("WEB-INF/web.xml");
它给出了文件系统上的路径。
然后创建包
$mvn clean package
生成 uber-jar 文件并包含声明为资源的 webapp 目录。
将 jar 移动到任何地方或生产服务器上并像这样运行它:
$ java -jar myjettyembededwithwebxmlandhtmljspfile.jar