问题:
使用maven创建spring的web项目,debug之后报错:
...classNotFoundException: org.springframework.web.context.ContextLoaderListener...,
context都找不到,也就是说可能不是部分没有编译出来,可能是所有jar都没有编译出来。想办法找到了tomcat的编译目录,查看编译文件,果然没有任何引入的jar包。那么现状就是:项目的maven dependencies是有jar包的,可是编译的时候没有编译出来。检查发布资源:deployment assemmbly,发现并没有maven dependencies,于是进行添加即可,下面是解决步骤:
- 右击项目
- 选择properties
- 搜索Deployment Assembly
- 点击Add
- java build path entries
- maven dependencies
时间: 2024-10-12 13:36:57