溪上青青草
2017-04-19 01:19
按教程走可以走通,但是tomcat启动却报错如下:
严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
这个问题是因为tomcat启动项目是找不到依赖包导致的。
如果使用tomcat容器,那么maven的插件就不能使用jetty了,要使用
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
他会将项目打包成war格式,再发布到tomcat中,这样所有的依赖包都会复制到tomcat中。
nice
Spring MVC起步
195972 学习 · 572 问题
相似问题