主頁(yè) > 知識(shí)庫(kù) > Struts1之url截取_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理

Struts1之url截取_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理

熱門標(biāo)簽:電銷機(jī)器人免培訓(xùn) 電話機(jī)器人需要使用網(wǎng)絡(luò)嗎 潤(rùn)滑油銷售電銷機(jī)器人 自繪地圖標(biāo)注數(shù)據(jù) 如何看懂地圖標(biāo)注點(diǎn) 外呼系統(tǒng)使用方法 海外圖書館地圖標(biāo)注點(diǎn) 給地圖標(biāo)注得傭金 南通通訊外呼系統(tǒng)產(chǎn)品介紹

Struts1之url截取

先我們來(lái)對(duì)ActionServlet深層次進(jìn)行分析。我們用斷點(diǎn)的調(diào)試的方式來(lái)看底層源碼。因?yàn)檫@個(gè)實(shí)例是post方式提交,所以將斷點(diǎn)設(shè)置到doPost方法上。


 

      我們debug運(yùn)行程序,進(jìn)入doPost里面的方法: 

        這個(gè)方法非常重要是ActionServlet運(yùn)行的核心方法。

        我們進(jìn)入這個(gè)方法:

    

       再繼續(xù)進(jìn)入:



      我們赫然發(fā)現(xiàn)了這樣一個(gè)方法就是processPath方法,這個(gè)方法就是截取字符串的方法。這個(gè)方法的源代碼如下:

/** 
  * p>Identify and return the path component(from the request URI) that 
  * we will use to select an code>ActionMapping/code> with which todispatch. 
  * If no such path can be identified,create an error response and return 
  * code>null/code>./p> 
  * 
  * @param request The servlet request weare processing 
  * @param response The servlet response weare creating 
  * 
  * @exception IOException if an input/outputerror occurs 
  */ 
 protectedString processPath(HttpServletRequest request, 
        HttpServletResponse response) 
  throws IOException { 
 
  String path = null; 
 
  // For prefix matching, match on the path info (if any) 
  path = (String) request.getAttribute(INCLUDE_PATH_INFO); 
  if (path == null) { 
   path = request.getPathInfo(); 
  } 
  if ((path != null)  (path.length() > 0)) { 
   return (path); 
  } 
 
  // For extension matching, strip the module prefix and extension 
  path = (String) request.getAttribute(INCLUDE_SERVLET_PATH); 
  if (path == null) { 
   path = request.getServletPath(); 
  } 
  String prefix = moduleConfig.getPrefix(); 
  if (!path.startsWith(prefix)) { 
   String msg =getInternal().getMessage("processPath"); 
    
   log.error(msg + " " + request.getRequestURI()); 
   response.sendError(HttpServletResponse.SC_BAD_REQUEST, msg); 
 
   return null; 
  } 
   
  path = path.substring(prefix.length()); 
  int slash = path.lastIndexOf("/"); 
  int period = path.lastIndexOf("."); 
  if ((period >= 0)  (period >slash)) { 
   path = path.substring(0, period); 
  } 
  return (path); 
 
} 

分析一下這段代碼: 

path = (String)request.getAttribute(INCLUDE_PATH_INFO); 
  if (path == null) { 
   path = request.getPathInfo(); 
  } 
  if ((path != null)  (path.length() > 0)) { 
   return (path); 
  } 

這段代碼首先判斷一下javax.servlet.include.path_info是否存在路徑信息,這里要知道當(dāng)當(dāng)一個(gè)頁(yè)面是以RequestDispatcher.include方式顯示的話,這個(gè)屬性值才存在。所以這里沒有值,就會(huì)進(jìn)入path=request.getPathInfo()程序中,這里的getPathInfo獲取的值是相對(duì)servlet的路徑信息。

// For extension matching, stripthe module prefix and extension 
  path = (String) request.getAttribute(INCLUDE_SERVLET_PATH); 
  if (path == null) { 
   path = request.getServletPath(); 
  } 
  String prefix = moduleConfig.getPrefix(); 
  if (!path.startsWith(prefix)) { 
   String msg =getInternal().getMessage("processPath"); 
    
   log.error(msg + " " + request.getRequestURI()); 
   response.sendError(HttpServletResponse.SC_BAD_REQUEST, msg); 
 
   return null; 
  } 

        這一段代碼是判斷javax.servlet.include.servlet_path是否存在值,這個(gè)也是當(dāng)一個(gè)頁(yè)面是以equestDispatcher.include方式顯示的話,這個(gè)屬性值才存在,所以這里的值沒有。之后進(jìn)入path = request.getServletPath();這個(gè)方法是獲得返回請(qǐng)求URI上下文后的子串,所以這里的返回值就是“/”和訪問(wèn)頁(yè)面名稱和后綴(這里和我的mvc實(shí)例截取的是不是一樣的道理)。隨后進(jìn)入下面代碼:

path = path.substring(prefix.length()); 
  intslash = path.lastIndexOf("/"); 
  intperiod = path.lastIndexOf("."); 
  if((period >= 0)  (period > slash)) { 
   path = path.substring(0, period); 
  } 
  return (path); 

       這里的方法主要和我的上面的那里是一樣的,主要就是去掉后綴。

您可能感興趣的文章:
  • Java框架Struts2實(shí)現(xiàn)圖片上傳功能
  • Java框架學(xué)習(xí)Struts2復(fù)選框?qū)嵗a
  • struts2標(biāo)簽總結(jié)_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理
  • struts1之簡(jiǎn)單mvc示例_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理
  • struts1之ActionServlet詳解_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理
  • Struts1教程之ActionMapping_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理
  • java struts2框架簡(jiǎn)介
  • Java struts2 package元素配置及實(shí)例解析

標(biāo)簽:廣州 南京 銅川 內(nèi)江 黃石 樂山 大連 貸款邀約

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Struts1之url截取_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理》,本文關(guān)鍵詞  Struts1,之,url,截取,動(dòng)力,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Struts1之url截取_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Struts1之url截取_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章