当前位置: 代码迷 >> J2SE >> 请问org.springframework.web.context.ContextLoaderListener配置struts2和spring以及路径关系
  详细解决方案

请问org.springframework.web.context.ContextLoaderListener配置struts2和spring以及路径关系

热度:10081   发布时间:2013-02-25 00:00:00.0
请教org.springframework.web.context.ContextLoaderListener配置struts2和spring以及路径关系
--------------------------------web.xml----------------

利用org.springframework.web.context.ContextLoaderListener在web.xml中已经配置好。
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>

---------------------------struts.xml-------------------------------------

<struts>
<package name="struts2" extends="struts-default">
<action name="login" class="loginAction">
<result name="input">/index.jsp</result>
<result name="success">/result.jsp</result>
</action>
</package>
</struts> 
-------------------------------applicationContext.xml------------------------
<bean id="loginDao" class="com.test.Dao.LoginDaoImpl">
</bean>  
  <bean name="loginAction" class="com.test.Action.Login" scope="prototype">
  <property name="loginDao" ref="loginDao"/>
</bean>

------解决方案--------------------------------------------------------
太复杂了 不清楚
  相关解决方案