spring 과 struts 통합


  DelegatingRequestProcessor      Spring    bean (  :struts action)

    DelegatingRequestProcessor   RequestProcessor。   Struts  DelegatingRequestProcessor,    struts-config.xml         : 

         <controller processorClass="org.springframework.web.struts.DelegatingRequestProcessor" /> 

           Struts DelegatingRequestProcessor      RequestProcessor。         ,Struts             Spring context  bean,  bean name     。 Struts  action       type  (     type         ,   spring            name   ,             。     :))。 

              ,    Spring     (    applicationContext.xml,       action-servlet.xml)          Action bean 。           Action bean    id  ,   name  id  ,  name      struts-config.xml    Action path      。 

     ,     Action    Spring      。


 

 


    bean   abstract="true",    bean      bean  bean  ,        。

<bean id="iadmindao" class="org.lxh.myzngt.dao.IAdminDAO"
  abstract="true">
 </bean>


<bean id="iadmindaoimpl" class="org.lxh.myzngt.dao.impl.IAdminDAOImpl"
  parent="iadmindao">
  <property name="hibernateTemplate">
   <ref bean="hibernateTemplate" />
  </property>
 </bean>


<bean name="/jsp/admin/admin" class="org.lxh.myzngt.struts.action.AdminAction">
  <property name="iadmindao">
   <ref bean="iadmindaoimpl" />
  </property>
 </bean>

좋은 웹페이지 즐겨찾기