为什么添加hibernate后,spring代理的action不可用啊?
在没有添加hibernate的时候,struts的action(spring代理的)是可以执行的,但是添加hibernate后,这个action就不能执行了,Servlet action is not available;//struts-config.xml
<action-mappings >
<action
attribute="testForm"
input="/test.jsp"
name="testForm"
path="/test"
scope="request"
type="org.springframework.web.struts.DelegatingActionProxy" />
</action-mappings>
<message-resources parameter="com.zz.struts.ApplicationResources" />
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" value="/WEB-INF/classes/applicationContext.xml" />
</plug-in>
//applicationContext.xml
<bean name="/test" class="com.zz.struts.action.TestAction" singleton="false"></bean>
不知道为什么,大家谁知道怎么回事?