我的怪怪,没有找到类当时我就去看了web.xml中配置的监听,按住Ctrl键点击可以找到类文件。再看看我的Maven引入spring-web包是正常滴,如下图:
错误原因:
进入tomcat的部署路径,E:\develop\workspace\jee\.metadata\.plugins\org.eclipse.wst.server.core\tmp0(此路径为项目工作空间)下\webapps\easyui\WEB-INF没有发有lib文件夹所以也就没有相应的jar包,正常情况下,会生成lib目录并把工程的所有依赖jar包都部署到该目录下。
解决方案:
1.右键点击项目--选择Properties
选择Deployment Assembly,在右边点击Add按钮,在弹出的窗口中选择Java Build Path Entries
2.点击Next,选择Maven Dependencies
3.点击Finish,然后可以看到已经把Maven Dependencies添加到Web应用结构中了
操作完后,重新部署工程,不再报错了。然后我们再到E:\develop\workspace\jee\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\webapps\easyui\WEB-INF目录下,发现工程WEB-INF目录下自动生成了lib目录,并且所有的依赖jar包也都已经部署进来。问题因此解 决。
参考文献:
http://blog.sina.com.cn/s/blog_7fb5109d0101o48g.html
其它原因解决:
http://blessht.iteye.com/blog/1104450
相关推荐
在Java Web开发中,`org.springframework.web.context.ContextLoaderListener` 是Spring框架的一部分,它负责初始化一个Web应用程序的Spring上下文。这个监听器是基于Servlet容器(如Tomcat、Jetty等)的,当Web应用...
org.springframework.web.context.ContextLoaderListener.class org.springframework.web.context.ContextLoaderServlet.class org.springframework.web.context.ServletConfigAware.class org.springframework.web....
只需基本的spring包即可 注:要是项目报错 java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener 缺少jar包,这个jar包在以上压缩包中就有
* java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener + 解决方案:检查 Spring 的依赖关系,是否存在类加载的问题,尝试使用 Dependency Inject 来解决问题。 * Exception...
错误发生在尝试配置应用程序监听器时,监听器类为`org.springframework.web.context.ContextLoaderListener`。这是一个Spring框架的关键组件,它负责初始化Spring Web应用的上下文。当Tomcat尝试加载这个类时,引发...
<listener-class>org.springframework.web.context.ContextLoaderListener ``` - **applicationContext.xml**:Spring的核心配置文件,定义了Bean的配置信息和事务管理等。 ```xml <beans xmlns="http://...
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener - **原因**:这个异常表示Spring的核心库未被正确加载。 - **解决办法**: - 确认Spring框架的相关jar包已被添加至...
7. **ClassNotFoundException: org.springframework.web.context.ContextLoaderListener**:这个错误通常出现在Spring MVC应用中,表示Spring的ContextLoaderListener类找不到。解决方法是确保Spring相关依赖已正确...
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener 解决方法: 项目 —> 属性 -> Deployment Assembly -> Add -> Java Build Path Entries -> 选择Maven Dependencies -> ...
`java.lang.ClassNotFoundException`: org.springframework.web.context.ContextLoaderListener** - **异常描述**:类未找到异常。 - **原因分析**:尝试加载的类在类路径中不存在。 - **解决方案**: - 确保类...
“Error configuring application listener of class org.springframework.web.context.ContextLoaderListener”通常是由于缺少Spring的相关库。确保已正确导入Spring 3.0 Web Libraries,并且项目构建设置无误。 ...
- 在web.xml中添加Spring的配置和监听器,这包括设置context-param来指定Spring配置文件的位置,以及添加ContextLoaderListener监听器,以便在应用启动时加载Spring上下文。 以上就是使用MyEclipse 10搭建SSH框架...