将多个war文件部署到jetty8中
如何使用 maven-jetty-plugin 将多个 webapps WAR 文件部署到 Jetty 8 中?
<contextHandlers>
<contextHandler implementation="org.mortbay.jetty.webapp.WebAppContext">
<war>${basedir}/dir/mywar.war</war>
<contextPath>/path</contextPath>
</contextHandler>
似乎仅适用于较旧的插件版本。
How do I deploy multiple webapps WAR files into Jetty 8 with maven-jetty-plugin
?
<contextHandlers>
<contextHandler implementation="org.mortbay.jetty.webapp.WebAppContext">
<war>${basedir}/dir/mywar.war</war>
<contextPath>/path</contextPath>
</contextHandler>
Seems to work only on older plugin versions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 pom.xml 中的以下代码片段。这是根据 Jetty 服务器指令改编的,虽然它是针对 Jetty7 的,但它可以轻松地适应更高版本。
pom.xml
我将 SSL 和 JNDI 配置留在那里,以防万一有人需要查看它们的配置方式。显然,他们需要支持文件。 SSL 假定您已经创建了一个合适的密钥库,其中包含 localhost 等的 SSL 证书。 JNDI 配置文件如下:
jetty-jndi-config.xml
这将允许使用例如 Spring bean 工厂进行 JNDI 资源查找,如下所示:
请注意,C3P0 和 Oracle 参考资料将介绍表面上是 Jetty 服务器本地的依赖项,因此应与 WAR 一起放置在
部分中。它们不必位于主要依赖项中。因此,现在您的 Maven 构建将包含一个嵌入式 Jetty Web 服务器,配置为与多个 WAR 一起使用,所有这些都绑定到 pom.xml 版本中,提供 HTTP 和 HTTPS 并支持池数据库连接。这几乎就是集成开发环境开箱即用所需的一切。
Use the following snippet from a pom.xml. This is adapted from the Jetty server instructions, and although it's for Jetty7 it can easily be adapted for later versions.
pom.xml
I've left the SSL and JNDI configuration in there just in case anyone needs to see how they are configured. Obviously, they will need the supporting files. The SSL assumes that you've already created a suitable key store containing an SSL certificate for, say, localhost. The JNDI configuration file is as follows:
jetty-jndi-config.xml
This will allow a JNDI resource lookup using, for example, a Spring bean factory like this:
Note that the C3P0 and Oracle references will introduce dependencies that are ostensibly local to your Jetty server, so should be placed in the
<plugin><dependencies>
section along with the WARs. They don't have to be in the main dependencies.So now your Maven build will contain an embedded Jetty web server, configured to work with multiple WARs, all tied into the pom.xml version, providing both HTTP and HTTPS and backed with a pooled database connection. That's pretty much everything you need right out of the box for an integrated development environment.