码迷,mamicode.com
首页 > 编程语言 > 详细

解决jetty7.0.pre5启动时报ClassNotFoundException: javax.interceptor.InvocationContext异常的问题

时间:2016-04-01 17:59:59      阅读:696      评论:0      收藏:0      [点我收藏+]

标签:

一.背景介绍:最近项目在使用maven命令行运行jetty服务器时出现ClassNotFoundException: javax.interceptor.InvocationContext异常

二.环境列举

  spring

  springMvc

  mybatis

  maven

  mysql

三.解决办法

  更换jetty插件的版本

   

 1  <plugin>  
 2       <groupId>org.mortbay.jetty</groupId>  
 3       <artifactId>maven-jetty-plugin</artifactId>  
 4       <version>6.1.26</version>  
 5       <configuration>  
 6          <webApp>target/iris-0.0.1-SNAPSHOT.war</webApp>  
 7          <connectors>  
 8             <connector  implementation="org.mortbay.jetty.nio.SelectChannelConnector">  
 9               <port>8087</port>  
10            </connector>  
11         </connectors>  
12         <stopKey>exit</stopKey>  
13         <stopPort>8081</stopPort>
14      <webAppSourceDirectory>src/main/webapp</webAppSourceDirectory>  
15         <scanIntervalSeconds>2</scanIntervalSeconds> 
16      <contextPath>/test</contextPath> 
17       </configuration>  
18  </plugin>

注意:此处<version>6.1.26</version>节点如果不进行配置,就会默认使用7.0.pre5。

解决jetty7.0.pre5启动时报ClassNotFoundException: javax.interceptor.InvocationContext异常的问题

标签:

原文地址:http://www.cnblogs.com/zhfei/p/5345556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!