Spring 集成 Web环境
解决java.lang.NoClassDefFoundError: javax/servlet/http/HttpServlet的一种方法
1.1 ApplicationContext应用上下文获取方式
应用上下文对象是通过New ClasspathXmlApplicationContext()方式获取的,但是每次从容器中获得Bean时都需要编写New ClasspathXmlApplicationContext() ,这样产生一个弊端,配置文件加载多次,应用上下文对象创建多次.
在web项目中,可以使用ServletContextListener监听Web应用的启动,我们可以在Web应用启动时,就加载Spring配置文件,创建应用上下文对象ApplicationContext,再将其存储到最大的域servletContext域中,这样就可以在任意位置从域中获取应用上下文ApplicationContext对象了.
- 使用监听器
ContextListener
public class ContextLoaderListener implements ServletContextListener {
@Override
public void contextInitialized(ServletContextEvent sce) {
ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
//将Spring应用上下文对象存储到 ServletContext 域中
ServletContext servletContext = sce.getServletContext();
servletContext.setAttribute("app",app);
}
@Override
public void contextDestroyed(ServletContextEvent sce) {
ServletContextListener.super.contextDestroyed(sce);
}
}
<!-- 配置监听器-->
<listener>
<listener-class>me.aowu.listener.ContextLoaderListener</listener-class>
</listener>
1.2 全局初始化参数
<!-- 全局初始化参数-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>applicationContext.xml</param-value>
</context-param>
ServletContext servletContext = sce.getServletContext();
//读取web.xml全局参数
String contextConfigLocation = servletContext.getInitParameter("contextConfigLocation");
1.3 Spring提供获取应用上下文的工具
上面的分析不用手动实现,Spring提供了一个监听器ContextLoaderListener 就是对上述功能的封装,该监听器内部加载SPring配置文件,创建应用上下文对象,并存储到SevletContext 域中,提供了一个客户端工具WebAoolicationContextUtils供用户获得应用上下文对象.
-
web.xml中配置ContextLoaderListener监听器(导入spring-web坐标)-------------web.xml------------------- <!-- 全局初始化参数--> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> <!-- 配置监听器--> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> -------------pom.xml------------------- <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.3.11</version> </dependency> -
使用
WebApplicationContextUtils获得应用上下文对象AplicationContext
ApplicationContext app = WebApplicationContextUtils.getWebApplicationContext(servletContext);
Error configuring application listener of class org.springframework.web....解决方案
IDEA中解决java.lang.ClassNotFoundException:org.springframework.web.context.ContextLoaderListener