maven项目报错:
Error configuring application listener of class org.springframework.web.context.ContextLoaderListener
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
应用程序侦听器配置错误:类无法加载异常(类找不到)
Error configuring application listener of class org.springframework.web.util.IntrospectorCleanupListener
解决方案一:找不到类有可能是jar包没有导入,报此错.
解决方案二:maven项目报此错:tomcat在发布项目的时候没有同时发布maven依赖所添加的jar包,所以找不到
解决方法:设置一下eclipse:
项目 —> properties -> Deployment Assembly(部署程序集项)-> Add -> Java Build Path Entries -> 选择Maven Dependencies -> Finish -> OK
把对应的Maven依赖包也发布到tomcat,调试时会自动把那些jar发布到指定目录下,tomcat也能找到那些jar了.
Error configuring application listener of class org.springframework.web.context.ContextLoaderListener
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
应用程序侦听器配置错误:类无法加载异常(类找不到)
Error configuring application listener of class org.springframework.web.util.IntrospectorCleanupListener
解决方案一:找不到类有可能是jar包没有导入,报此错.
解决方案二:maven项目报此错:tomcat在发布项目的时候没有同时发布maven依赖所添加的jar包,所以找不到
解决方法:设置一下eclipse:
项目 —> properties -> Deployment Assembly(部署程序集项)-> Add -> Java Build Path Entries -> 选择Maven Dependencies -> Finish -> OK
把对应的Maven依赖包也发布到tomcat,调试时会自动把那些jar发布到指定目录下,tomcat也能找到那些jar了.