struts1.2.9 ==============================
ActionServlet:
请求dopost或doget调用:
protected void process(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
ModuleUtils.getInstance().selectModule(request, getServletContext());
ModuleConfig config = getModuleConfig(request);
RequestProcessor processor = getProcessorForModule(config);
if (processor == null) {
processor = getRequestProcessor(config);
}
//在1.2.9中使用RequestProcessor 实例
processor.process(request, response);
}
//第一次请求到来时调用
protected synchronized RequestProcessor getRequestProcessor(ModuleConfig config)
throws ServletException {
RequestProcessor processor = this.getProcessorForModule(config);
if (processor == null) {
try {
processor =
(RequestProcessor) RequestUtils.applicationInstance(
config.getControllerConfig().getProcessorClass());
。。。。
}
=====================================================
ActionServlet.init()
的 moduleConfig.freeze()方法
由子类ModuleConfigImpl.class实现
getControllerConfig().freeze();
public ControllerConfig getControllerConfig() {
if (this.controllerConfig == null) {
this.controllerConfig = new ControllerConfig();
}
return (this.controllerConfig);
}
在ControllerConfig中有:
protected String processorClass =
"org.apache.struts.action.RequestProcessor";
所以在上面
ActionServlet的getRequestProcessor方法中返回的是org.apache.struts.action.RequestProcessor并创建实例
======================================================
而1.3.10中
ControllerConfig改为:
protected String processorClass =
"org.apache.struts.chain.ComposableRequestProcessor";
所以实际使用ComposableRequestProcessor类处理struts流程
=================================================
可以在struts-config.xml中添加:
<controller processorClass="org.apache.struts.action.RequestProcessor" />
指定RequestProcessor处理。
分享到:
相关推荐
- **窍门2**:覆盖RequestProcessor,自定义处理器,增强Struts框架的灵活性。 - **窍门3**:将动作管理委托给Spring,利用Spring的BeanFactory管理业务对象的生命周期,实现更精细的控制。 - **拦截Struts**:通过...
### J2EE电子商务系统开发从入门到精通——基于Struts和Hibernate技术实现 #### J2EE概论 **1.1 简单双层架构到复杂多层架构** - **1.1.1 双层(C/S)软件架构设计** - 双层架构(客户端/服务器架构,Client/...
**1.2 J2EE简介** - **1.2.1 什么是J2EE** - J2EE(Java 2 Platform, Enterprise Edition)是Sun Microsystems公司为简化企业级应用开发而提出的一套标准框架。它提供了一组强大的API和服务,使开发者可以轻松地构建...
12.1.2 Struts 2.0与Struts 1.x框架的区别 215 12.2 MyEclipse创建基于Struts 2.0框架的项目 215 12.2.1 下载Struts 2.0开发包 216 12.2.2 创建Struts 2.0项目 216 12.2.3 配置Struts 2.0项目 217 12.2.4 创建Struts...
在Struts框架中,可以自定义`RequestProcessor`来全局处理请求的编码问题,示例代码如下: ```java public class MyProRequestProcessor extends RequestProcessor { protected boolean processPreprocess...