[我]Struts+Spring的整合

linweihan1984發表於2007-10-16
xml 程式碼
  1. <action-mappings >  
  2.    <action  
  3.      attribute="indexForm"  
  4.      input="/index.jsp"  
  5.      name="indexForm"  
  6.      parameter="state"  
  7.      path="/index"  
  8.      scope="request"  
  9.     />  
  10.   
  11.   
  12.  action-mappings>  
  13.   
  14.  <controller processorClass="org.springframework.web.struts.DelegatingRequestProcessor"/>  

 

這種通過加一個構造器,而不用在action裡面都要寫type="org.springframework.web.struts.DelegatingActionProxy"

而在另外一個檔案中專門用來寫/index 和action的對應如:

xml 程式碼
  1. <beans default-autowire="byName">  
  2.     <bean name="/index"  
  3.         class="org.langsin.computer.web.action.IndexAction"  
  4.         singleton="false">  
  5.         <property name="userService">  
  6.             <ref bean="userService" />  
  7.         property>  
  8.     bean>  
  9.   
  10. beans>  

這個檔名字可以叫action-servlet.xml

相關文章