背景
使用Maven构建的Web工程。使用Eclipse配置TomCat来发布Web工程。
问题
启动的时候报
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener。
分析
在我的项目里是有这个类所在的jar包的,于是通过Browse Deployment Location来查看工程,发布工程下面缺少jar。怀疑发布工程
的时候配置的有问题。
解决
工程---->右键------->Properties,弹出的窗口如下:
点击Deployment Assembly---->Add,弹出的窗口如下:
选择Java Build Path Entries ,弹出的窗口如下:
选择Maven Dependencies---》Finish。
然后重启TomCat,OK。大功告成。