真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Spring之WEB模塊配置的示例分析-創(chuàng)新互聯(lián)

小編給大家分享一下Spring之WEB模塊配置的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

創(chuàng)新互聯(lián)建站擁有網(wǎng)站維護(hù)技術(shù)和項(xiàng)目管理團(tuán)隊(duì),建立的售前、實(shí)施和售后服務(wù)體系,為客戶提供定制化的網(wǎng)站建設(shè)、網(wǎng)站制作、網(wǎng)站維護(hù)、遂寧服務(wù)器托管解決方案。為客戶網(wǎng)站安全和日常運(yùn)維提供整體管家式外包優(yōu)質(zhì)服務(wù)。我們的網(wǎng)站維護(hù)服務(wù)覆蓋集團(tuán)企業(yè)、上市公司、外企網(wǎng)站、成都商城網(wǎng)站開發(fā)、政府網(wǎng)站等各類型客戶群體,為全球上1000家企業(yè)提供全方位網(wǎng)站維護(hù)、服務(wù)器維護(hù)解決方案。

Spring的WEB模塊用于整合Web框架,例如Struts1、Struts2、JSF等

整合Struts1

繼承方式

Spring框架提供了ActionSupport類支持Struts1的Action。繼承了ActionSupport后就能獲取Spring的BeanFactory,從而獲得各種Spring容器內(nèi)的各種資源

import org.springframework.web.struts.ActionSupport; 
 
public class CatAction extends ActionSupport{ 
  public ICatService getCarService(){ 
    return (ICatService) getWebApplicationContext().getBean("catService"); 
  } 
  public ActionForward execute(ActionMappingmapping,ActionForm form,HttpServletRequest request,HttpServletResponseresponse){ 
    CatForm catForm = (CatForm) form; 
    if("list".equals(catForm.getAction())){ 
     returnthis.list(mapping,form,request,response); 
    } 
  } 
 
  public ActionForward list(ActionMappingmapping,ActionForm form,HttpServletRequest request,HttpServletResponseresponse){ 
    CatForm catForm = (CatForm) form; 
    ICatService catService =getCatService(); 
    List catList =catService.listCats(); 
    request.setAttribute("carList",catList); 
 
    return mapping.find("list"); 
  } 
}

Spring在web.xml中的配置

 
  contextConfigLocation 
  /WEB-INF/classes/applicationContext.xml 
 
 
 
   
    org.springframework.web.context.ContextLoaderListener 
   
 
 
 
  CharacterEncodingFilter 
  org.springframework.web.filter.CharacterEncodingFilter 
   
    encoding 
    UTF-8 
   
   
    forceEncoding 
    true 
   
 
 
  CharacterEncodingFilter 
  /* 

如果與Hibernate結(jié)合使用,需要在web.xml中添加OpenSessionInViewFilter過濾器,將session范圍擴(kuò)大到JSP層,防止拋出延遲加載異常

 
  hibernateFilter 
  org.springframework.orm.hibernate3.support. OpenSessionInViewFilter 
 
 
   hibernateFilter 
  *.do 

代理方式

繼承方式融入Spring非常簡單,但是缺點(diǎn)是代碼與Spring發(fā)生了耦合,并且Action并沒有交給Spring管理,因此不能使用Spring的AOP、IoC特性,使用代理方式則可以避免這些缺陷

public class CatAction extends Action{ //此處繼承的Struts 1的Action 
  private ICatService catService; 
  //setter、getter略 
 
  public ActionForward execute(ActionMappingmapping,ActionForm form,HttpServletRequest request,HttpServletResponseresponse){ 
    CatForm catForm = (CatForm) form; 
    if("list".equals(catForm.getAction())){ 
     returnthis.list(mapping,form,request,response); 
    } 
  } 
 
  public ActionForward list(ActionMappingmapping,ActionForm form,HttpServletRequest request,HttpServletResponseresponse){ 
    CatForm catForm = (CatForm) form; 
    ICatService catService =getCatService(); 
    List catList =catService.listCats(); 
    request.setAttribute("carList",catList); 
 
    return mapping.find("list"); 
  } 
}

這個(gè)Action沒有與Spring發(fā)生耦合,只是定義了一個(gè)ICatService屬性,然后由Spring負(fù)責(zé)注入

struts-congfig.xml配置

 
   
 
 
 
   
     
   
 
 
 
 
 
 
 
 
   

web.xml的配置與上面的繼承方式相同

使用代理方式的Action可以配置攔截器等Spring特性,例如給CatAction配置方法前攔截器和返回后攔截器

 
   
     
   
   
 
 
 
   
     
   
   
 
 
 
   
     
      catBeforeInterceptor 
      catAfterInterceptor 
     
   
   
     
      
     
   

整合Struts 2

Spring整合Struts 2需要struts2-spring-2.011.jar包

public class CatAction{ 
  private ICatService catService; 
  private Cat cat; 
  //setter、getter略 
 
  public String list(){ 
    catService.listCats(); 
    return "list"; 
  } 
  
  public String add(){ 
    catService.createCat(cat); 
    return list(); 
  } 
}

struts.xml配置

除了正常的配置之外,還需要添加名為struts.objectFactory的常量,把值設(shè)為spring,表示該Action由Spring產(chǎn)生。然后把的class屬性改為catAction,Struts2將會到Spring中尋找名為catAction的bean

 
 
 
 
  {1} 
  /list.jsp 
  /list.jsp 
 

Spring配置

 
   

web.xml配置

 
  contextConfigLocation 
  /WEB-INF/classes/applicationContext.xml 
 
 
 
   
    org.springframework.web.context.ContextLoaderListener 
   
 
 
 
  Struts2 
  org.apache.struts2.dispatcher.FilterDispatcher 
 
 
   Struts2 
  /* 

以上是“Spring之WEB模塊配置的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


當(dāng)前文章:Spring之WEB模塊配置的示例分析-創(chuàng)新互聯(lián)
分享地址:http://weahome.cn/article/dpgigo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部