WEB开发网
开发学院WEB开发Jsp Struts模块化编程经典实战教程(三) 阅读

Struts模块化编程经典实战教程(三)

 2008-01-05 10:13:39 来源:WEB开发网   
核心提示:4、模块定义 通过上面对STRUTS的模块化机制的讲解,我们现在可以开始实现我们的模块化例子程序了,Struts模块化编程经典实战教程(三), 4.1 Actionservlet参数 我们在struts的web.xml中定义模块,下面的代码定义了三个模块:缺省模块, 5.3.1 Formtag Formtag的setA

  4、模块定义
  通过上面对STRUTS的模块化机制的讲解,我们现在可以开始实现我们的模块化例子程序了。
  
  4.1 Actionservlet参数
  
  我们在struts的web.xml中定义模块。下面的代码定义了三个模块:缺省模块,apPRoval和registration模块,前缀分别是””,/approval和/registration。
  
  
  
    action
    org.apache.struts.action.ActionServlet
    
      config
      /WEB-INF/struts-config.xml
          

    
      config/approval
      /WEB-INF/struts-config-approval.xml
          

    
      config/registration
      /WEB-INF/struts-config-registration.xml
    

  
     1
      
  
    action
    *.do
      

  

  
  这样在初始化actionservlet的过程中,servletcontext的属性中就会有这样的属性键/值关系:
  
Struts模块化编程经典实战教程(三)

  4.2 approval模块配置文件
  
  下面是approval模块的配置文件,定义了form和action,以及相应的forward。
  
  
                 DTD Struts Configuration 1.1//EN"
  "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
  
    
    
    

      

   
          attribute="approvalForm"
      name="approvalForm"
      input="/index.jsp"
      path="/approval"
      scope="request"
      type="com.i505.struts.approval.action.ApprovalAction">
      
    
  
  

  
  4.3 registration模块配置文件
  
  下面是registration模块的配置文件,定义了form和action,以及相应的message-resources和forward。
  
  
                 DTD Struts Configuration 1.1//EN"
  "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
  
  
    
      

   
          attribute="registrationForm"
      input="/index.jsp"
      name="registrationForm"
      path="/registration"
      type="com.i505.struts.registration.action.RegistrationAction">
      
    
  
  
  

  
  5、模块选择
  本节主要讲述struts中如何选择模块,实现模块的真正运作的。
  
  5.1 action的模块选择
  
  当我们在浏览器中使用http://hostaddress/contextpath/module/action.do式样的的url时,actionservlet会根据module选择模块对象,下面是actionservlet处理http请求的代码:
  
  protected void process(HttpServletRequest request,
              HttpServletResponse response)
    throws IOException, ServletException {
    RequestUtils.selectModule(request, getServletContext());
       getRequestProcessor(getModuleConfig(request)).process
      (request, response);
  }
  
  RequestUtils.selectModule函数将使用下面的代码把url中的模块前缀(下面代码的prefix将代表上面url式样中的/module)指定的模块对象保存在request属性中,这个模块对象就成了处理这个请求的当前模块对象:
  
  // EXPose the resources for this module
    ModuleConfig config = (ModuleConfig)
   context.getAttribute(Globals.MODULE_KEY + prefix);
    if (config != null) {
      request.setAttribute(Globals.MODULE_KEY, config);
    }
   else {
      request.removeAttribute(Globals.MODULE_KEY);
    }
  
  5.2 资源的模块化
  
  资源(比如jsp)的模块化是指资源可以按照模块一样来组织,比如approval模块的资源可以放在approval目录下,而registration模块的资源则放在registration目录下,缺省模块的资源放在webroot下。
  
  url访问这些资源很简单,url式样是 http://hostaddress/contextpath/module/xxx.jsp。对于input和forward访问这些资源,我们只需直接写相对于模块路径下的路径,注重它们必须以”/”开头。假如forward是相对servletcontext的,则要加上模块路径。
  
  
          attribute="registrationForm"
      input="/index.jsp"
      name="registrationForm"
      path="/registration"
      type="com.i505.struts.registration.action.RegistrationAction">
      
    
  
  
  5.3 Formtag中表单action url的生成
  
  对于模块编程,struts在formtag的action属性似乎有些问题,这些问题出现在struts没有考虑直接访问jsp时的情况。应为forward和直接访问这两种环境是不同的,主要是直接访问这些JSP,request属性中没有模块对象,而forward访问这些jsp时request属性中有模块对象。我们需要修改代码,使得在产生action属性时不受jsp所在环境的影响,也就是我们将在formtag的action属性中指定模块,而不是request中得到模块。下面是registration模块的index.jsp的代码,它的formtag的action属性包括了模块的前缀/registration:
  
  <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
   <%@ taglib uri="/WEB-INF/struts-Html.tld" prefix="html"%>
  
  申请注册
  <%@ page contentType="text/html;charset=GB2312" %>
  
  
  
   姓名:


   年龄:


  
  

  
  
  
  下面我们来修改struts的相关代码达到这个效果。
  
  5.3.1 Formtag
  
  Formtag的setAction将识别form tag的acton属性的module前缀,并分离出真正的模块相对的action路径,lookup将直接从ServletContext中获取模块配置对象。
  
  private String getActionPath(String action) {
   String temp = action.trim();
   String x;
        int pos=0;
   if(!temp.startsWith("/")) temp = "/"+ temp;
   pos = temp.indexOf("/", 1);
   if(pos<=0) return action;
  
         return temp.substring(pos); }
  private String getModulePrefix(String action) {
   String result;
   int pos;
   String temp=action.trim();
   if(!temp.startsWith("/")) {
   temp= "/"+temp;
   }
   pos = temp.indexOf("/", 1);
   if(pos<=1) return "";
   else
    re

Tags:Struts 模块化 编程

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接