此文章转载自http://www.blogjava.net/bigbigtooth/archive/2008/03/27/85756.html
用于备忘学习
一、 概述
Spring MVC 的开发是基于 action-servlet.xml 进行配置,但不支持开发模式下进行动态的配置文件载入。本文主要是介绍如何修改 Spring 的源代码,使 Spring 支持动态的配置文件更新,让开发变得更加简单。
二、 实现 action-servlet.xml 动态载入
Spring 提取配置文件的思路 :每次 Spring MVC 会在使用前将 XML 文件载入内存中,并生成映射类的实例,放在 Mapping Map 里。然后判断每个请求,如果有其 URL 所对应的映射,则返回其对应的 Action 实例。
修改思路 :将每次得到请求时,让程序重新载入 xml 文件,并实例化其映射,然后放入 Mapping Map 中。
1、 首先是 FrameworkServlet ,他是 DispatcherServlet 的基类。 XML 在载入内存后,放在一个叫 WebApplicationContext 的类中。找到 getWebApplicationContext() 方法,加入以下代码:
ConfigurableWebApplicationContext wac = (ConfigurableWebApplicationContext) BeanUtils
.instantiateClass(getContextClass());
wac.setParent(WebApplicationContextUtils
.getWebApplicationContext(getServletContext()));
wac.setServletContext(getServletContext());
wac.setNamespace(getNamespace());
if (getContextConfigLocation() != null ) {
wac
.setConfigLocations(StringUtils
.tokenizeToStringArray(
getContextConfigLocation(),
ConfigurableWebApplicationContext. CONFIG_LOCATION_DELIMITERS ));
}
wac.refresh();
this . webApplicationContext = wac;
这样每次再读取 WebApplicationContext 的时候,会重新载入 XML 文件一次。
2、 修改 DispatcherServlet ,这个 Servlet 是处理所有请求的入口。找到 getHandler() 这个方法,他负责找到相应的 Action ,并返回其实例。将代码中的
Iterator it = this.handlerMappings.iterator();
while (it.hasNext()) {
HandlerMapping hm = (HandlerMapping) it.next();
if (logger.isDebugEnabled()) {
logger.debug("Testing handler map [" + hm + "] in DispatcherServlet with name '" +
getServletName() + "'");
}
handler = hm.getHandler(request);
if (handler != null) {
if (cache) {
request.setAttribute(HANDLER_EXECUTION_CHAIN_ATTRIBUTE, handler);
}
return handler;
}
}
改为
initHandlerMappings();
Iterator it = this . handlerMappings .iterator();
while (it.hasNext()) {
BeanNameUrlHandlerMapping hm = (BeanNameUrlHandlerMapping) it.next();
if ( logger .isDebugEnabled()) {
logger .debug( "Testing handler map [" + hm + "] in DispatcherServlet with name '" +
getServletName() + "'" );
}
hm.initApplicationContext();
handler = hm.getHandler(request);
if (handler != null ) {
if (cache) {
request.setAttribute( HANDLER_EXECUTION_CHAIN_ATTRIBUTE , handler);
}
return handler;
}
}
注解:
1) 其中 BeanNameUrlHandlerMapping 是将强制转换 HandlerMapping 时,用子类代替父类,因为子类提供了一个重新初始化的方法 initApplicationContext() ,调用该方法可以重新载入 WebApplicationContext , 并刷新 Mapping Map 。
2) initHandlerMappings() 是 DispatcherServlet 初始化 Mapping 的一个方法。在生成 WebApplicationContext 时,程序还会把放在 ApplicationObjectSupport.applicationContext 保存,因此需要重新初始化一次。
3 、修改 org.springframework.web.servlet.handler.AbstractUrlHandlerMapping
类中的 registerHandler() 方法,它的作用是注册 Mapping ,去掉重复性校验,将下面几行代码注释掉。
if (mappedHandler != null) {
throw new ApplicationContextException(
"Cannot map handler [" + handler + "] to URL path [" + urlPath +
"]: there's already handler [" + mappedHandler + "] mapped");
}
三、实现 applicationContext.xml 的动态载入
Spring 实现思路: applicationContext.xml 是 Spring 默认的配置文件,它利用配置 ContextLoaderListener 的方式,在应用载入时启动,并将 applicationContext.xml 载入内存中,放在 ServletContext 的 Attribute 中,保存的方式是一个 WebApplicationContext 类。当每次调用类时, beanFactory 会调用 WebApplicationContextUtils 中的方法 getWebApplicationContext() ,得到配置信息。
修改方法: 在 ContextLoaderListener 初始化 WebApplicationContext 时,会利用 ContextLoader 提供的方法 initWebApplicationContext() 进行初始化,我们只需要得到 Listener 的这个 ContextLoader 的实例,并重新调用一个初始化的方法就可以实现重新载入了。
修改步骤:
1 、找到 ContextLoaderListener 类的方法 contextInitialized() ,在 Context 初始化的时候将 ContextLoader 的引用放在 ServletContext 的 Attribute 中:
public void contextInitialized(ServletContextEvent event) {
this . contextLoader = createContextLoader();
this . contextLoader .initWebApplicationContext(event.getServletContext());
event.getServletContext().setAttribute( "ListenerContextLoader" , this . contextLoader );
}
注: "ListenerContextLoader" 是自定义的名称,可以任意修改。
3、 找到 WebApplicationContextUtils 类的方法 getWebApplicationContext() ,修改第一行代码:
Object attr = sc.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);
改为:
Object attr = null ;
ContextLoader cl = (ContextLoader) sc
.getAttribute( "ListenerContextLoader" );
if (cl != null )
attr = cl.initWebApplicationContext(sc);
这样,在每次获取 WebApplicationContext 时,程序会重新载入 applicationContext.xml 一次。
OK !大功告成, Enjoy your spring developing !!!
分享到:
相关推荐
ContextLoaderListener(listener 标签) 由此得知配置文件是哪些, 它会将它们载入. 因为我们将 DispatcherServlet 命名为 ideawu, 所以我们在 WEB-INF 目录下建立一个名为 ideawu-servlet.xml 的文件: ideawu-...
- **示例**:创建UserManager类,并在Spring配置文件中声明其事务属性。 8. **为strutsAction编写测试程序** - **测试Action**:编写测试程序来验证Action类的功能。 - **示例**:编写JUnit测试用例,测试...
创建项目目录结构,包括`src`目录用于存放Java源代码,`war`目录用于存放JSP文件、配置文件等。这一步强调了良好的目录结构对于项目的管理非常重要。 - **第2步:创建index.jsp** 在`war`目录中创建初始的JSP...
第09课(讲解datagrid的行编辑模式,增加、删除、修改,扩展editor的类型,扩展datagrid,增加动态改变editor属性,简单介绍了form的load,简单介绍了弹窗编辑模式,讲解了双击行开启编辑模式,选择行开启编辑模式,...
l 数据模型中的变量任何地方都可见,也包括不同的名字空间,下面是修改的库: <p>Copyright (C) ${date} ${user}. All rights reserved. ${user}@acme.com"> l 假设数据模型中的user变量的值是Fred,...