jetty运行配置jetty:run-war

本文介绍了解决Jetty部署中遇到的问题,特别是在非标准Maven项目结构下如何通过配置`maven-jetty-plugin`来指定war文件的位置,实现Jetty的正常运行。

刚使用jetty时,完全不懂怎么配置。老是出现各种错误。就像下面这种

 

 

[ERROR] Failed to execute goal org.mortbay.jetty:maven-jetty-plugin:6.1.19:run (
default-cli) on project orderapp: Webapp source directory D:\resource\ApacheCXFB
ook\Chapter2\orderapp\src\main\webapp does not exist -> [Help 1]

 

 

一看,是工程不符MAVEN的标准。但是现在又不想修改这个结构。怎么办?

 

 

使用jetty:run-war

 

 

原来jetty:run-war会默认打包应用程序,然后执行部署${project.build.directory}/${project.build.finalName}.war。只需要修改webApp的位置就可以了

 

<configuration>

<webApp>${basedir}/target/mycustom.war</webApp>
</configuration

 

This goal will first package your webapp as a war file and then deploy it to Jetty. If you set a non-zero scanInterval Jetty will watch your pom.xml and the war file and if either changes, it will redeploy the war.

The configuration parameters specific to this goal are:

  • webApp The location of the built war file. This defaults to ${project.build.directory}/${project.build.finalName}.war. If this is not sufficient, set it to your custom location.

Here's how you would set it:

<project>
  ...
  <plugins>
    ...
      <plugin>
        <groupId>org.mortbay.jetty</groupId>
        <artifactId>maven-jetty-plugin</artifactId>
        <configuration>
          <webApp>${basedir}/target/mycustom.war</webApp>
        </configuration>
      </plugin>
  </plugins>
</project>

 

 

 

 

 

 

 

[INFO] ------------------------------------------------------------------------ [INFO] [INFO] >>> jetty-maven-plugin:9.2.6.v20141205:run (default-cli) > test-compile @ bankBail >>> [WARNING] The POM for com.corsyn.util:corsyn-utils-logTrackId:jar:1.0.0 is missing, no dependency information available [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 0.813 s [INFO] Finished at: 2025-07-12T16:02:53+08:00 [INFO] Final Memory: 9M/238M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal on project bankBail: Could not resolve dependencies for project com.corsyn:bankBail:war:0.0.1-SNAPSHOT: Failure to find com.corsyn.util:corsyn-utils-logTrackId:jar:1.0.0 in https://maven.aliyun.com/repository/public was cached in the local repository, resolution will not be reattempted until the update interval of aliyunmaven has elapsed or updates are forced -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException Disconnected from the target VM, address: '127.0.0.1:1568', transport: 'socket'
最新发布
07-13
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值