maven的jetty插件提示No Transaction manager found导致启动慢的解决方法

阅读更多

 

参考 http://jira.codehaus.org/browse/JETTY-1503

写道
Don't forget you can use the following to specify which jars to scan in your webapp:

org.eclipse.jetty.server.webapp.WebInfIncludeJarPattern
eg
./.*foo-api-[^/]\.jar$|./.*bar-[^/]\.jar$|./.*wibble[^/]\.jar$

 

在使用maven开发web项目极大地方便了jar包的依赖,在测试时也可以集成Servlet容器,从启动速度和量级上看,Jetty无疑是不二选择, 然而从8.x开始,如果你的web项目中不包含数据库访问(或者说没有事务管理器)的话,在其启动时会提示找不到事务管理器,输出信息如下:

 

oejpw.PlusConfiguration:No Transaction manager found - if your webapp requires one, please configure one.

 

 

而且启动过程会暂停十几秒,在反复调试代码时很浪费时间,经过多天在网上搜索资料,终于找到了解决办法。

 

首先是pom.xml中关于插件的配置:

 


  org.mortbay.jetty
  jetty-maven-plugin
  8.1.16.v20140903
    
    conf/jetty.xml,conf/jetty-ssl.xml
    conf/jetty-contexts.xml
    10
     
      /
    
  

 

重要的是加上

配置,我们要对jetty的服务器属性进行配置。本例中把配置文件放到了/src/main/resources中(如果你不希望打包时带上这个文件,可 以放到/src/test/resources中,改下配置即可),文件名为:jetty-context.xml。接下来是配置文件:

 













	
		org.eclipse.jetty.server.webapp.WebInfIncludeJarPattern
		.*/.*jsp-api-[^/]\.jar$|./.*jsp-[^/]\.jar$|./.*taglibs[^/]*\.jar$
		
	
  

 

 

http://laravel.iteye.com/

 

你可能感兴趣的:(maven的jetty插件提示No Transaction manager found导致启动慢的解决方法)