http://www.iteye.com/topic/829843

 一、概述

Struts2的核心是一个Filter,Action可以脱离web容器,那么是什么让http请求和action关联在一起的,下面我们深入源码来分析下Struts2是如何工作的。

FilterDispatcher API 写道
Deprecated. Since Struts 2.1.3, use StrutsPrepareAndExecuteFilter instead or StrutsPrepareFilter and StrutsExecuteFilter if needing using the ActionContextCleanUp filter in addition to this one

鉴于常规情况官方推荐使用StrutsPrepareAndExecuteFilter替代FilterDispatcher,我们此文 将剖析StrutsPrepareAndExecuteFilter,其在工程中作为一个Filter配置在web.xml中,配置如下:

  1. < filter >
  2. < filter-name > struts2 </ filter-name >
  3. < filter-class > org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</ filter-class >
  4. </ filter >
  5. < filter-mapping >
  6. < filter-name > struts2 </ filter-name >
  7. < url-pattern > /* </ url-pattern >
  8. </ filter-mapping >
  1. <filter>
  2. <filter-name>struts2</filter-name>
  3. <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  4. </filter>
  5. <filter-mapping>
  6. <filter-name>struts2</filter-name>
  7. <url-pattern>/*</url-pattern>
  8. </filter-mapping>

二、源码属性方法简介

下面我们研究下StrutsPrepareAndExecuteFilter源码,类的主要信息如下:

属性摘要
protected  List<Pattern > excludedPatterns 
           
protected  ExecuteOperations execute 
           
protected  PrepareOperations prepare 
           

StrutsPrepareAndExecuteFilter与普通的Filter并无区别,方法除继承自Filter外,仅有一个回调方法,第三部分我 们将按照Filter方法调用顺序,由init—>doFilter—>destroy顺序地分析源码。

方法摘要
 void destroy () 
           继承自Filter,用于资源释放
 void doFilter (ServletRequest  req, ServletResponse  res, FilterChain  chain)  
           继承自Filter,执行方法
 void init (FilterConfig  filterConfig)  
           继承自Filter,初始化参数
protected  void postInit (Dispatcher  dispatcher, FilterConfig  filterConfig) 
          Callback for post initialization(一个空的方法,用于方法回调初始化)

三、源码剖析    

1、init方法

init是Filter第一个运行的方法,我们看下struts2的核心Filter在调用init方法初始化时做哪些工作:

  1. public   void  init(FilterConfig filterConfig)  throws  ServletException {
  2. InitOperations init = new  InitOperations();
  3. try  {
  4. //封装filterConfig,其中有个主要方法getInitParameterNames将参数名字以String格式存储在List中
  5. FilterHostConfig config = new  FilterHostConfig(filterConfig);
  6. // 初始化struts内部日志
  7. init.initLogging(config);
  8. //<strong>创建dispatcher ,并初始化,这部分下面我们重点分析,初始化时加载那些资源</strong>
  9. Dispatcher dispatcher = init.initDispatcher(config);
  10. init.initStaticContentLoader(config, dispatcher);
  11. //初始化类属性:prepare 、execute
  12. prepare = new PrepareOperations(filterConfig.getServletContext(), dispatcher);
  13. execute = new ExecuteOperations(filterConfig.getServletContext(), dispatcher);
  14. this .excludedPatterns = init.buildExcludedPatternsList(dispatcher);
  15. //回调空的postInit方法
  16. postInit(dispatcher, filterConfig);
  17. } finally  {
  18. init.cleanup();
  19. }
  20. }
  1. public void init(FilterConfig filterConfig) throws ServletException {
  2. InitOperations init = new InitOperations();
  3. try {
  4. //封装filterConfig,其中有个主要方法getInitParameterNames将参数名字以String格式存储在List中
  5. FilterHostConfig config = new FilterHostConfig(filterConfig);
  6. // 初始化struts内部日志
  7. init.initLogging(config);
  8. //<strong>创建dispatcher ,并初始化,这部分下面我们重点分析,初始化时加载那些资源</strong>
  9. Dispatcher dispatcher = init.initDispatcher(config);
  10. init.initStaticContentLoader(config, dispatcher);
  11. //初始化类属性:prepare 、execute
  12. prepare = new PrepareOperations(filterConfig.getServletContext(), dispatcher);
  13. execute = new ExecuteOperations(filterConfig.getServletContext(), dispatcher);
  14. this.excludedPatterns = init.buildExcludedPatternsList(dispatcher);
  15. //回调空的postInit方法
  16. postInit(dispatcher, filterConfig);
  17. } finally {
  18. init.cleanup();
  19. }
  20. }

首先看下FilterHostConfig ,源码如下:

  1. public   class  FilterHostConfig  implements  HostConfig {
  2. private  FilterConfig config;
  3. /**
  4. *构造函数
  5. */
  6. public  FilterHostConfig(FilterConfig config) {
  7. this .config = config;
  8. }
  9. /**
  10. *  根据init-param配置的param-name获取param-value的值
  11. */
  12. public  String getInitParameter(String key) {
  13. return  config.getInitParameter(key);
  14. }
  15. /**
  16. *  返回初始化参数名的List
  17. */
  18. public  Iterator<String> getInitParameterNames() {
  19. return  MakeIterator.convert(config.getInitParameterNames());
  20. }
  21. public  ServletContext getServletContext() {
  22. return  config.getServletContext();
  23. }
  24. }
  1. public class FilterHostConfig implements HostConfig {
  2. private FilterConfig config;
  3. /**
  4. *构造函数
  5. */
  6. public FilterHostConfig(FilterConfig config) {
  7. this.config = config;
  8. }
  9. /**
  10. *  根据init-param配置的param-name获取param-value的值
  11. */
  12. public String getInitParameter(String key) {
  13. return config.getInitParameter(key);
  14. }
  15. /**
  16. *  返回初始化参数名的List
  17. */
  18. public Iterator<String> getInitParameterNames() {
  19. return MakeIterator.convert(config.getInitParameterNames());
  20. }
  21. public ServletContext getServletContext() {
  22. return config.getServletContext();
  23. }
  24. }

只有短短的几行代码,getInitParameterNames是这个类的核心,将Filter初始化参数名称有枚举类型转为Iterator。此类的主要作为是对filterConfig 封装。

 重点来了,创建并初始化Dispatcher 

  1. public  Dispatcher initDispatcher( HostConfig filterConfig ) {
  2. Dispatcher dispatcher = createDispatcher(filterConfig);
  3. dispatcher.init();
  4. return  dispatcher;
  5. }
  1. public Dispatcher initDispatcher( HostConfig filterConfig ) {
  2. Dispatcher dispatcher = createDispatcher(filterConfig);
  3. dispatcher.init();
  4. return dispatcher;
  5. }

创建Dispatcher,会读取 filterConfig 中的配置信息,将配置信息解析出来,封装成为一个Map,然后根绝servlet上下文和参数Map构造Dispatcher :

  1. private  Dispatcher createDispatcher( HostConfig filterConfig ) {
  2. Map<String, String> params = new  HashMap<String, String>();
  3. for  ( Iterator e = filterConfig.getInitParameterNames(); e.hasNext(); ) {
  4. String name = (String) e.next();
  5. String value = filterConfig.getInitParameter(name);
  6. params.put(name, value);
  7. }
  8. return   new  Dispatcher(filterConfig.getServletContext(), params);
  9. }
  1. private Dispatcher createDispatcher( HostConfig filterConfig ) {
  2. Map<String, String> params = new HashMap<String, String>();
  3. for ( Iterator e = filterConfig.getInitParameterNames(); e.hasNext(); ) {
  4. String name = (String) e.next();
  5. String value = filterConfig.getInitParameter(name);
  6. params.put(name, value);
  7. }
  8. return new Dispatcher(filterConfig.getServletContext(), params);
  9. }

Dispatcher初始化,加载struts2的相关配置文件,将按照顺序逐一加载:default.properties,struts-default.xml,struts-plugin.xml,struts.xml,……

  1. /**
  2. *初始化过程中依次加载如下配置文件
  3. */
  4. public   void  init() {
  5. if  (configurationManager ==  null ) {
  6. configurationManager = new ConfigurationManager(BeanSelectionProvider.DEFAULT_BEAN_NAME);
  7. }
  8. try  {
  9. //加载org/apache/struts2/default.properties
  10. init_DefaultProperties(); // [1]
  11. //加载struts-default.xml,struts-plugin.xml,struts.xml
  12. init_TraditionalXmlConfigurations(); // [2]
  13. init_LegacyStrutsProperties(); // [3]
  14. //用户自己实现的ConfigurationProviders类
  15. init_CustomConfigurationProviders(); // [5]
  16. //Filter的初始化参数
  17. init_FilterInitParameters() ; // [6]
  18. init_AliasStandardObjects() ; // [7]
  19. Container container = init_PreloadConfiguration();
  20. container.inject(this );
  21. init_CheckConfigurationReloading(container);
  22. init_CheckWebLogicWorkaround(container);
  23. if  (!dispatcherListeners.isEmpty()) {
  24. for  (DispatcherListener l : dispatcherListeners) {
  25. l.dispatcherInitialized(this );
  26. }
  27. }
  28. } catch  (Exception ex) {
  29. if  (LOG.isErrorEnabled())
  30. LOG.error("Dispatcher initialization failed" , ex);
  31. throw   new  StrutsException(ex);
  32. }
  33. }
  1. /**
  2. *初始化过程中依次加载如下配置文件
  3. */
  4. public void init() {
  5. if (configurationManager == null) {
  6. configurationManager = new ConfigurationManager(BeanSelectionProvider.DEFAULT_BEAN_NAME);
  7. }
  8. try {
  9. //加载org/apache/struts2/default.properties
  10. init_DefaultProperties(); // [1]
  11. //加载struts-default.xml,struts-plugin.xml,struts.xml
  12. init_TraditionalXmlConfigurations(); // [2]
  13. init_LegacyStrutsProperties(); // [3]
  14. //用户自己实现的ConfigurationProviders类
  15. init_CustomConfigurationProviders(); // [5]
  16. //Filter的初始化参数
  17. init_FilterInitParameters() ; // [6]
  18. init_AliasStandardObjects() ; // [7]
  19. Container container = init_PreloadConfiguration();
  20. container.inject(this);
  21. init_CheckConfigurationReloading(container);
  22. init_CheckWebLogicWorkaround(container);
  23. if (!dispatcherListeners.isEmpty()) {
  24. for (DispatcherListener l : dispatcherListeners) {
  25. l.dispatcherInitialized(this);
  26. }
  27. }
  28. } catch (Exception ex) {
  29. if (LOG.isErrorEnabled())
  30. LOG.error("Dispatcher initialization failed", ex);
  31. throw new StrutsException(ex);
  32. }
  33. }

初始化default.properties,具体的初始化操作在DefaultPropertiesProvider类中

  

  1. private   void  init_DefaultProperties() {
  2. configurationManager.addConfigurationProvider(new  DefaultPropertiesProvider());
  3. }
  1. private void init_DefaultProperties() {
  2. configurationManager.addConfigurationProvider(new DefaultPropertiesProvider());
  3. }

    

   下面我们看下DefaultPropertiesProvider类源码:

  1. public   void  register(ContainerBuilder builder, LocatableProperties props)
  2. throws  ConfigurationException {
  3. Settings defaultSettings = null ;
  4. try  {
  5. defaultSettings = new  PropertiesSettings( "org/apache/struts2/default" );
  6. } catch  (Exception e) {
  7. throw   new  ConfigurationException("Could not find or error in org/apache/struts2/default.properties" , e);
  8. }
  9. loadSettings(props, defaultSettings);
  10. }
  1. public void register(ContainerBuilder builder, LocatableProperties props)
  2. throws ConfigurationException {
  3. Settings defaultSettings = null;
  4. try {
  5. defaultSettings = new PropertiesSettings("org/apache/struts2/default");
  6. } catch (Exception e) {
  7. throw new ConfigurationException("Could not find or error in org/apache/struts2/default.properties", e);
  8. }
  9. loadSettings(props, defaultSettings);
  10. }

   其他的我们再次省略,大家可以浏览下各个初始化操作都加载了那些文件

3、doFilter方法

doFilter是过滤器的执行方法,它拦截提交的HttpServletRequest请求,HttpServletResponse响应,作为strtus2的核心拦截器,在doFilter里面到底做了哪些工作,我们将逐行解读其源码,源码如下:

  1. public   void  doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws  IOException, ServletException {
  2. //父类向子类转:强转为http请求、响应
  3. HttpServletRequest request = (HttpServletRequest) req;
  4. HttpServletResponse response = (HttpServletResponse) res;
  5. try  {
  6. //设置编码和国际化
  7. prepare.setEncodingAndLocale(request, response);
  8. //创建Action上下文(重点)
  9. prepare.createActionContext(request, response);
  10. prepare.assignDispatcherToThread();
  11. if  ( excludedPatterns !=  null  && prepare.isUrlExcluded(request, excludedPatterns)) {
  12. chain.doFilter(request, response);
  13. } else  {
  14. request = prepare.wrapRequest(request);
  15. ActionMapping mapping = prepare.findActionMapping(request, response, true );
  16. if  (mapping ==  null ) {
  17. boolean  handled = execute.executeStaticResourceRequest(request, response);
  18. if  (!handled) {
  19. chain.doFilter(request, response);
  20. }
  21. } else  {
  22. execute.executeAction(request, response, mapping);
  23. }
  24. }
  25. } finally  {
  26. prepare.cleanupRequest(request);
  27. }
  28. }
  1. public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {
  2. //父类向子类转:强转为http请求、响应
  3. HttpServletRequest request = (HttpServletRequest) req;
  4. HttpServletResponse response = (HttpServletResponse) res;
  5. try {
  6. //设置编码和国际化
  7. prepare.setEncodingAndLocale(request, response);
  8. //创建Action上下文(重点)
  9. prepare.createActionContext(request, response);
  10. prepare.assignDispatcherToThread();
  11. if ( excludedPatterns != null && prepare.isUrlExcluded(request, excludedPatterns)) {
  12. chain.doFilter(request, response);
  13. } else {
  14. request = prepare.wrapRequest(request);
  15. ActionMapping mapping = prepare.findActionMapping(request, response, true);
  16. if (mapping == null) {
  17. boolean handled = execute.executeStaticResourceRequest(request, response);
  18. if (!handled) {
  19. chain.doFilter(request, response);
  20. }
  21. } else {
  22. execute.executeAction(request, response, mapping);
  23. }
  24. }
  25. } finally {
  26. prepare.cleanupRequest(request);
  27. }
  28. }

setEncodingAndLocale调用了dispatcher方法的prepare方法:

  1. /**
  2. * Sets the request encoding and locale on the response
  3. */
  4. public   void setEncodingAndLocale(HttpServletRequest request, HttpServletResponse response) {
  5. dispatcher.prepare(request, response);
  6. }
  1. /**
  2. * Sets the request encoding and locale on the response
  3. */
  4. public void setEncodingAndLocale(HttpServletRequest request, HttpServletResponse response) {
  5. dispatcher.prepare(request, response);
  6. }

下面我们看下prepare方法,这个方法很简单只是设置了encoding 、locale ,做的只是一些辅助的工作:

  1. public   void  prepare(HttpServletRequest request, HttpServletResponse response) {
  2. String encoding = null ;
  3. if  (defaultEncoding !=  null ) {
  4. encoding = defaultEncoding;
  5. }
  6. Locale locale = null ;
  7. if  (defaultLocale !=  null ) {
  8. locale = LocalizedTextUtil.localeFromString(defaultLocale, request.getLocale());
  9. }
  10. if  (encoding !=  null ) {
  11. try  {
  12. request.setCharacterEncoding(encoding);
  13. } catch  (Exception e) {
  14. LOG.error("Error setting character encoding to '"  + encoding + "' - ignoring." , e);
  15. }
  16. }
  17. if  (locale !=  null ) {
  18. response.setLocale(locale);
  19. }
  20. if  (paramsWorkaroundEnabled) {
  21. request.getParameter("foo" ); // simply read any parameter (existing or not) to "prime" the request
  22. }
  23. }
  1. public void prepare(HttpServletRequest request, HttpServletResponse response) {
  2. String encoding = null;
  3. if (defaultEncoding != null) {
  4. encoding = defaultEncoding;
  5. }
  6. Locale locale = null;
  7. if (defaultLocale != null) {
  8. locale = LocalizedTextUtil.localeFromString(defaultLocale, request.getLocale());
  9. }
  10. if (encoding != null) {
  11. try {
  12. request.setCharacterEncoding(encoding);
  13. } catch (Exception e) {
  14. LOG.error("Error setting character encoding to '" + encoding + "' - ignoring.", e);
  15. }
  16. }
  17. if (locale != null) {
  18. response.setLocale(locale);
  19. }
  20. if (paramsWorkaroundEnabled) {
  21. request.getParameter("foo"); // simply read any parameter (existing or not) to "prime" the request
  22. }
  23. }

Action上下文创建(重点)

ActionContext是一个容器,这个容易主要存储request、session、application、parameters等相关信 息.ActionContext是一个线程的本地变量,这意味着不同的action之间不会共享ActionContext,所以也不用考虑线程安全问 题。其实质是一个Map,key是标示request、session、……的字符串,值是其对应的对象:

  1. static  ThreadLocal actionContext =  new  ThreadLocal();
  2. Map<String, Object> context;
  1. static ThreadLocal actionContext = new ThreadLocal();
  2. Map<String, Object> context;

下面我们看下如何创建action上下文的,代码如下:

  1. /**
  2. *创建Action上下文,初始化thread local
  3. */
  4. public ActionContext createActionContext(HttpServletRequest request, HttpServletResponse response) {
  5. ActionContext ctx;
  6. Integer counter = 1 ;
  7. Integer oldCounter = (Integer) request.getAttribute(CLEANUP_RECURSION_COUNTER);
  8. if  (oldCounter !=  null ) {
  9. counter = oldCounter + 1 ;
  10. }
  11. //注意此处是从ThreadLocal中获取此ActionContext变量
  12. ActionContext oldContext = ActionContext.getContext();
  13. if  (oldContext !=  null ) {
  14. // detected existing context, so we are probably in a forward
  15. ctx = new  ActionContext( new  HashMap<String, Object>(oldContext.getContextMap()));
  16. } else  {
  17. ValueStack stack = dispatcher.getContainer().getInstance(ValueStackFactory.class).createValueStack();
  18. stack.getContext().putAll(dispatcher.createContextMap(request, response, null, servletContext));
  19. //stack.getContext()返回的是一个Map<String,Object>,根据此Map构造一个ActionContext
  20. ctx = new  ActionContext(stack.getContext());
  21. }
  22. request.setAttribute(CLEANUP_RECURSION_COUNTER, counter);
  23. //将ActionContext存如ThreadLocal
  24. ActionContext.setContext(ctx);
  25. return  ctx;
  26. }
  1. /**
  2. *创建Action上下文,初始化thread local
  3. */
  4. public ActionContext createActionContext(HttpServletRequest request, HttpServletResponse response) {
  5. ActionContext ctx;
  6. Integer counter = 1;
  7. Integer oldCounter = (Integer) request.getAttribute(CLEANUP_RECURSION_COUNTER);
  8. if (oldCounter != null) {
  9. counter = oldCounter + 1;
  10. }
  11. //注意此处是从ThreadLocal中获取此ActionContext变量
  12. ActionContext oldContext = ActionContext.getContext();
  13. if (oldContext != null) {
  14. // detected existing context, so we are probably in a forward
  15. ctx = new ActionContext(new HashMap<String, Object>(oldContext.getContextMap()));
  16. } else {
  17. ValueStack stack = dispatcher.getContainer().getInstance(ValueStackFactory.class).createValueStack();
  18. stack.getContext().putAll(dispatcher.createContextMap(request, response, null, servletContext));
  19. //stack.getContext()返回的是一个Map<String,Object>,根据此Map构造一个ActionContext
  20. ctx = new ActionContext(stack.getContext());
  21. }
  22. request.setAttribute(CLEANUP_RECURSION_COUNTER, counter);
  23. //将ActionContext存如ThreadLocal
  24. ActionContext.setContext(ctx);
  25. return ctx;
  26. }

上面代码中dispatcher.createContextMap,如何封装相关参数:

  1. public Map<String,Object> createContextMap(HttpServletRequest request, HttpServletResponse response,
  2. ActionMapping mapping, ServletContext context) {
  3. // request map wrapping the http request objects
  4. Map requestMap = new  RequestMap(request);
  5. // parameters map wrapping the http parameters.  ActionMapping parameters are now handled and applied separately
  6. Map params = new  HashMap(request.getParameterMap());
  7. // session map wrapping the http session
  8. Map session = new  SessionMap(request);
  9. // application map wrapping the ServletContext
  10. Map application = new  ApplicationMap(context);
  11. //requestMap、params、session等Map封装成为一个上下文Map,逐个调用了map.put(Map p).
  12. Map<String,Object> extraContext = createContextMap(requestMap, params, session, application, request, response, context);
  13. if  (mapping !=  null ) {
  14. extraContext.put(ServletActionContext.ACTION_MAPPING, mapping);
  15. }
  16. return  extraContext;
  17. }
  1. public Map<String,Object> createContextMap(HttpServletRequest request, HttpServletResponse response,
  2. ActionMapping mapping, ServletContext context) {
  3. // request map wrapping the http request objects
  4. Map requestMap = new RequestMap(request);
  5. // parameters map wrapping the http parameters.  ActionMapping parameters are now handled and applied separately
  6. Map params = new HashMap(request.getParameterMap());
  7. // session map wrapping the http session
  8. Map session = new SessionMap(request);
  9. // application map wrapping the ServletContext
  10. Map application = new ApplicationMap(context);
  11. //requestMap、params、session等Map封装成为一个上下文Map,逐个调用了map.put(Map p).
  12. Map<String,Object> extraContext = createContextMap(requestMap, params, session, application, request, response, context);
  13. if (mapping != null) {
  14. extraContext.put(ServletActionContext.ACTION_MAPPING, mapping);
  15. }
  16. return extraContext;
  17. }

我们简单看下RequestMap,其他的省略。RequestMap类实现了抽象Map,故其本身是一个Map,主要方法实现:

  1. //map的get实现
  2. public  Object get(Object key) {
  3. return  request.getAttribute(key.toString());
  4. }
  5. //map的put实现
  6. public  Object put(Object key, Object value) {
  7. Object oldValue = get(key);
  8. entries = null ;
  9. request.setAttribute(key.toString(), value);
  10. return  oldValue;
  11. }
  1. //map的get实现
  2. public Object get(Object key) {
  3. return request.getAttribute(key.toString());
  4. }
  5. //map的put实现
  6. public Object put(Object key, Object value) {
  7. Object oldValue = get(key);
  8. entries = null;
  9. request.setAttribute(key.toString(), value);
  10. return oldValue;
  11. }

下面是源码展示了如何执行Action控制器:

  1. public   void executeAction(HttpServletRequest request, HttpServletResponse response, ActionMapping mapping) throws  ServletException {
  2. dispatcher.serviceAction(request, response, servletContext, mapping);
  3. }
  4. public   void serviceAction(HttpServletRequest request, HttpServletResponse response, ServletContext context,
  5. ActionMapping mapping) throws  ServletException {
  6. //封装执行的上下文环境,主要讲相关信息存储入map
  7. Map<String, Object> extraContext = createContextMap(request, response, mapping, context);
  8. // If there was a previous value stack, then create a new copy and pass it in to be used by the new Action
  9. ValueStack stack = (ValueStack) request.getAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY);
  10. boolean  nullStack = stack ==  null ;
  11. if  (nullStack) {
  12. ActionContext ctx = ActionContext.getContext();
  13. if  (ctx !=  null ) {
  14. stack = ctx.getValueStack();
  15. }
  16. }
  17. if  (stack !=  null ) {
  18. extraContext.put(ActionContext.VALUE_STACK, valueStackFactory.createValueStack(stack));
  19. }
  20. String timerKey = "Handling request from Dispatcher" ;
  21. try  {
  22. UtilTimerStack.push(timerKey);
  23. //获取命名空间
  24. String namespace = mapping.getNamespace();
  25. //获取action配置的name属性
  26. String name = mapping.getName();
  27. //获取action配置的method属性
  28. String method = mapping.getMethod();
  29. Configuration config = configurationManager.getConfiguration();
  30. //根据执行上下文参数,命名空间,名称等创建用户自定义Action的代理对象
  31. ActionProxy proxy = config.getContainer().getInstance(ActionProxyFactory.class).createActionProxy(
  32. namespace, name, method, extraContext, true ,  false );
  33. request.setAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY, proxy.getInvocation().getStack());
  34. // if the ActionMapping says to go straight to a result, do it!
  35. //执行execute方法,并转向结果
  36. if  (mapping.getResult() !=  null ) {
  37. Result result = mapping.getResult();
  38. result.execute(proxy.getInvocation());
  39. } else  {
  40. proxy.execute();
  41. }
  42. // If there was a previous value stack then set it back onto the request
  43. if  (!nullStack) {
  44. request.setAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY, stack);
  45. }
  46. } catch  (ConfigurationException e) {
  47. // WW-2874 Only log error if in devMode
  48. if (devMode) {
  49. String reqStr = request.getRequestURI();
  50. if  (request.getQueryString() !=  null ) {
  51. reqStr = reqStr + "?"  + request.getQueryString();
  52. }
  53. LOG.error("Could not find action or result/n"  + reqStr, e);
  54. }
  55. else  {
  56. LOG.warn("Could not find action or result" , e);
  57. }
  58. sendError(request, response, context, HttpServletResponse.SC_NOT_FOUND, e);
  59. } catch  (Exception e) {
  60. sendError(request, response, context, HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e);
  61. } finally  {
  62. UtilTimerStack.pop(timerKey);
  63. }
  64. }
  1. public void executeAction(HttpServletRequest request, HttpServletResponse response, ActionMapping mapping) throws ServletException {
  2. dispatcher.serviceAction(request, response, servletContext, mapping);
  3. }
  4. public void serviceAction(HttpServletRequest request, HttpServletResponse response, ServletContext context,
  5. ActionMapping mapping) throws ServletException {
  6. //封装执行的上下文环境,主要讲相关信息存储入map
  7. Map<String, Object> extraContext = createContextMap(request, response, mapping, context);
  8. // If there was a previous value stack, then create a new copy and pass it in to be used by the new Action
  9. ValueStack stack = (ValueStack) request.getAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY);
  10. boolean nullStack = stack == null;
  11. if (nullStack) {
  12. ActionContext ctx = ActionContext.getContext();
  13. if (ctx != null) {
  14. stack = ctx.getValueStack();
  15. }
  16. }
  17. if (stack != null) {
  18. extraContext.put(ActionContext.VALUE_STACK, valueStackFactory.createValueStack(stack));
  19. }
  20. String timerKey = "Handling request from Dispatcher";
  21. try {
  22. UtilTimerStack.push(timerKey);
  23. //获取命名空间
  24. String namespace = mapping.getNamespace();
  25. //获取action配置的name属性
  26. String name = mapping.getName();
  27. //获取action配置的method属性
  28. String method = mapping.getMethod();
  29. Configuration config = configurationManager.getConfiguration();
  30. //根据执行上下文参数,命名空间,名称等创建用户自定义Action的代理对象
  31. ActionProxy proxy = config.getContainer().getInstance(ActionProxyFactory.class).createActionProxy(
  32. namespace, name, method, extraContext, true, false);
  33. request.setAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY, proxy.getInvocation().getStack());
  34. // if the ActionMapping says to go straight to a result, do it!
  35. //执行execute方法,并转向结果
  36. if (mapping.getResult() != null) {
  37. Result result = mapping.getResult();
  38. result.execute(proxy.getInvocation());
  39. } else {
  40. proxy.execute();
  41. }
  42. // If there was a previous value stack then set it back onto the request
  43. if (!nullStack) {
  44. request.setAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY, stack);
  45. }
  46. } catch (ConfigurationException e) {
  47. // WW-2874 Only log error if in devMode
  48. if(devMode) {
  49. String reqStr = request.getRequestURI();
  50. if (request.getQueryString() != null) {
  51. reqStr = reqStr + "?" + request.getQueryString();
  52. }
  53. LOG.error("Could not find action or result/n" + reqStr, e);
  54. }
  55. else {
  56. LOG.warn("Could not find action or result", e);
  57. }
  58. sendError(request, response, context, HttpServletResponse.SC_NOT_FOUND, e);
  59. } catch (Exception e) {
  60. sendError(request, response, context, HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e);
  61. } finally {
  62. UtilTimerStack.pop(timerKey);
  63. }
  64. }

文中对如何解析Struts.xml,如何将URL与action映射匹配为分析,有需要的我后续补全,因为 StrutsXmlConfigurationProvider继承XmlConfigurationProvider,并在register方法回调父 类的register,有兴趣的可以深入阅读下下XmlConfigurationProvider源码:

  1. public   void  register(ContainerBuilder containerBuilder, LocatableProperties props) throws  ConfigurationException {
  2. if  (servletContext !=  null  && !containerBuilder.contains(ServletContext. class)) {
  3. containerBuilder.factory(ServletContext.class ,  new  Factory<ServletContext>() {
  4. public  ServletContext create(Context context)  throws  Exception {
  5. return  servletContext;
  6. }
  7. });
  8. }
  9. //调用父类的register,关键点所在
  10. super .register(containerBuilder, props);
  11. }
  1. public void register(ContainerBuilder containerBuilder, LocatableProperties props) throws ConfigurationException {
  2. if (servletContext != null && !containerBuilder.contains(ServletContext.class)) {
  3. containerBuilder.factory(ServletContext.class, new Factory<ServletContext>() {
  4. public ServletContext create(Context context) throws Exception {
  5. return servletContext;
  6. }
  7. });
  8. }
  9. //调用父类的register,关键点所在
  10. super.register(containerBuilder, props);
  11. }

struts2-core-2.2.1.jar包中struts-2.1.7.dtd对于Action的定义如下:

  1. <!ELEMENT action (param|result|interceptor-ref|exception-mapping)* >
  2. <!ATTLIST action
  3. name CDATA #REQUIRED
  4. class CDATA #IMPLIED
  5. method CDATA #IMPLIED
  6. converter CDATA #IMPLIED
  7. >
  1. <!ELEMENT action (param|result|interceptor-ref|exception-mapping)*>
  2. <!ATTLIST action
  3. name CDATA #REQUIRED
  4. class CDATA #IMPLIED
  5. method CDATA #IMPLIED
  6. converter CDATA #IMPLIED
  7. >

从上述DTD中可见Action元素可以含有name 、class 、method 、converter 属性。

XmlConfigurationProvider解析struts.xml配置的Action元素:

  1. protected   void  addAction(Element actionElement, PackageConfig.Builder packageContext) throws  ConfigurationException {
  2. String name = actionElement.getAttribute("name" );
  3. String className = actionElement.getAttribute("class" );
  4. String methodName = actionElement.getAttribute("method" );
  5. Location location = DomHelper.getLocationObject(actionElement);
  6. if  (location ==  null ) {
  7. LOG.warn("location null for "  + className);
  8. }
  9. //methodName should be null if it's not set
  10. methodName = (methodName.trim().length() > 0 ) ? methodName.trim() :  null ;
  11. // if there isnt a class name specified for an <action/> then try to
  12. // use the default-class-ref from the <package/>
  13. if  (StringUtils.isEmpty(className)) {
  14. // if there is a package default-class-ref use that, otherwise use action support
  15. /* if (StringUtils.isNotEmpty(packageContext.getDefaultClassRef())) {
  16. className = packageContext.getDefaultClassRef();
  17. } else {
  18. className = ActionSupport.class.getName();
  19. }*/
  20. } else  {
  21. if  (!verifyAction(className, name, location)) {
  22. if  (LOG.isErrorEnabled())
  23. LOG.error("Unable to verify action [#0] with class [#1], from [#2]", name, className, location.toString());
  24. return ;
  25. }
  26. }
  27. Map<String, ResultConfig> results;
  28. try  {
  29. results = buildResults(actionElement, packageContext);
  30. } catch  (ConfigurationException e) {
  31. throw   new  ConfigurationException( "Error building results for action " + name +  " in namespace "  + packageContext.getNamespace(), e, actionElement);
  32. }
  33. List<InterceptorMapping> interceptorList = buildInterceptorList(actionElement, packageContext);
  34. List<ExceptionMappingConfig> exceptionMappings = buildExceptionMappings(actionElement, packageContext);
  35. ActionConfig actionConfig = new ActionConfig.Builder(packageContext.getName(), name, className)
  36. .methodName(methodName)
  37. .addResultConfigs(results)
  38. .addInterceptors(interceptorList)
  39. .addExceptionMappings(exceptionMappings)
  40. .addParams(XmlHelper.getParams(actionElement))
  41. .location(location)
  42. .build();
  43. packageContext.addActionConfig(name, actionConfig);
  44. if  (LOG.isDebugEnabled()) {
  45. LOG.debug("Loaded " + (StringUtils.isNotEmpty(packageContext.getNamespace()) ? (packageContext.getNamespace() + "/" ) :  "" ) + name +  " in '"  + packageContext.getName() +  "' package:" + actionConfig);
  46. }
  47. }
  1. protected void addAction(Element actionElement, PackageConfig.Builder packageContext) throws ConfigurationException {
  2. String name = actionElement.getAttribute("name");
  3. String className = actionElement.getAttribute("class");
  4. String methodName = actionElement.getAttribute("method");
  5. Location location = DomHelper.getLocationObject(actionElement);
  6. if (location == null) {
  7. LOG.warn("location null for " + className);
  8. }
  9. //methodName should be null if it's not set
  10. methodName = (methodName.trim().length() > 0) ? methodName.trim() : null;
  11. // if there isnt a class name specified for an <action/> then try to
  12. // use the default-class-ref from the <package/>
  13. if (StringUtils.isEmpty(className)) {
  14. // if there is a package default-class-ref use that, otherwise use action support
  15. /* if (StringUtils.isNotEmpty(packageContext.getDefaultClassRef())) {
  16. className = packageContext.getDefaultClassRef();
  17. } else {
  18. className = ActionSupport.class.getName();
  19. }*/
  20. } else {
  21. if (!verifyAction(className, name, location)) {
  22. if (LOG.isErrorEnabled())
  23. LOG.error("Unable to verify action [#0] with class [#1], from [#2]", name, className, location.toString());
  24. return;
  25. }
  26. }
  27. Map<String, ResultConfig> results;
  28. try {
  29. results = buildResults(actionElement, packageContext);
  30. } catch (ConfigurationException e) {
  31. throw new ConfigurationException("Error building results for action " + name + " in namespace " + packageContext.getNamespace(), e, actionElement);
  32. }
  33. List<InterceptorMapping> interceptorList = buildInterceptorList(actionElement, packageContext);
  34. List<ExceptionMappingConfig> exceptionMappings = buildExceptionMappings(actionElement, packageContext);
  35. ActionConfig actionConfig = new ActionConfig.Builder(packageContext.getName(), name, className)
  36. .methodName(methodName)
  37. .addResultConfigs(results)
  38. .addInterceptors(interceptorList)
  39. .addExceptionMappings(exceptionMappings)
  40. .addParams(XmlHelper.getParams(actionElement))
  41. .location(location)
  42. .build();
  43. packageContext.addActionConfig(name, actionConfig);
  44. if (LOG.isDebugEnabled()) {
  45. LOG.debug("Loaded " + (StringUtils.isNotEmpty(packageContext.getNamespace()) ? (packageContext.getNamespace() + "/") : "") + name + " in '" + packageContext.getName() + "' package:" + actionConfig);
  46. }
  47. }

工作中不涉及Struts2,本周工作有个2天的空档期,稍微看了下struts2的文档,写了个demo,从源码的角度研究了下运行原理,如有分析不当请指出,我后续逐步完善更正,大家共同提高。

StrutsPrepareAndExecuteFilter(转)的更多相关文章

  1. 第一次部署Struts2时出现错误java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter.class

    报如下错误 at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1720) at org. ...

  2. org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter与org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter

    欢迎和大家交流技术相关问题: 邮箱: jiangxinnju@163.com 博客园地址: http://www.cnblogs.com/jiangxinnju GitHub地址: https://g ...

  3. org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter与org.apache.struts.dispatcher.FilterDispatcher是什么区别?

    org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter与org.apache.struts.dispatcher.F ...

  4. StrutsPrepareAndExecuteFilter的作用

    FilterDispatcher是早期struts2的过滤器,后期的都用StrutsPrepareAndExecuteFilter了,如 2.1.6.2.1.8.StrutsPrepareAndExe ...

  5. 【转】Eclipse配置Struts2问题:ClassNotFoundException: org...dispatcher.ng.filter.StrutsPrepareAndExecuteFilter

    我的解决方案 一开始,我是依照某本教材,配置了User Libraries(名为struts-2.2.3, 可供多个项目多次使用), 然后直接把struts-2.2.3引入过来(这个包不会真正的放在项 ...

  6. class not found: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter

    用jdk1.8版本配完SSH框架后,进行数据库的Hibernate reverse engineering后,,最下面的log.error会报错,然后看网上说是因为jdk1.8,换成了1.7就好了(剩 ...

  7. Struts2.5学习笔记----org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter报错

    Struts2.3升级到struts2.5后报错 <filter> <filter-name>struts2</filter-name> <filter-cl ...

  8. tomcat 启动报 找不到 StrutsPrepareAndExecuteFilter。。

    <?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://w ...

  9. struts2 FilterDispatcher 和 StrutsPrepareAndExecuteFilter 的区别(转)

    FilterDispatcher是struts2.0.x到2.1.2版本的核心过滤器.! StrutsPrepareAndExecuteFilter是自2.1.3开始就替代了FilterDispatc ...

随机推荐

  1. 帝国cms7.0修改“信息提示”框

    具体修改查看e/message/index.php文件 上传一张合适用的图 <table width="600" height="224" border= ...

  2. ubuntu14.04下 Android虚拟机 genymotion 的下载和安装

    官网:https://www.genymotion.com/ Install Guide https://www.genymotion.com/#!/developers/user-guide#ins ...

  3. Docker Machine

    Docker Machine http://dockone.io/article/1485?utm_source=tuicool&utm_medium=referral 本地安装与使用 Doc ...

  4. 调用相册怎么设置剪裁-b

    //创建一个相册控制器 UIImagePickerController *pc = [[UIImagePickerController alloc] init]; //图片来源// UIImagePi ...

  5. php100视频教程解压密码

    php100-75-vip.rar 解压密码:php100-18293-2938-2839-348-#php100-76_u.rar 解压密码:php100-18634-6254-1001-283-# ...

  6. Hbase Java API程序设计步骤

    http://www.it165.net/admin/html/201407/3390.html 步骤1:创建一个Configuration对象 包含了客户端链接Hbase服务所需的全部信息: zoo ...

  7. 【poj2891】同余方程组

    同余方程组 例题1:pku2891Strange Way to Express Integers 中国剩余定理求的同余方程组mod 的数是两两互素的.然而本题(一般情况,也包括两两互素的情况,所以中国 ...

  8. C语言嵌入式系统编程修炼之三:内存操作

    数据指针 在嵌入式系统的编程中,常常要求在特定的内存单元读写内容,汇编有对应的MOV指令,而除C/C++以外的其它编程语言基本没有直接访问绝对地址的能力.在嵌入式系统的实际调试中,多借助C语言指针所具 ...

  9. 子窗体显示在任务栏,且子窗体中又有弹窗(CreateParams修改三个风格参数)

    子窗体显示在任务栏时, procedure Tfrm_SendSmartMsg.CreateParams(var Params: TCreateParams);begin  inherited;  P ...

  10. SQL server 连接查询

    1.join on     左右拼接查询 2.union 上下拼接    注意:所拼接的列的数据类型要一致