文件太大,我只列出主要部分了,我不用spring管理action的时候,可以正常使用
struts-config.xml 里的配置
<action-mappings >
<action
attribute="loginForm"
input="/common/login.jsp"
name="loginForm"
parameter="method"
path="/login"
scope="request"
validate="true"
type="org.springframework.web.struts.DelegatingActionProxy">
<forward name="superAdminGo" path="/common/superAdmin.jsp" />
</action>
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" value="/WEB-INF/applicationContext.xml" />
</plug-in>
applicationContext.xml 的配置
<bean name="/login" class="com.test.struts.action.LoginAction" singleton="false">
<property name="userDAO">
<ref bean="userDAOProxy" />
</property>
</bean>
错误提示是:
message Servlet action is not available
description The requested resource (Servlet action is not available) is not available.
由于篇幅, 只列出了部分资料,如需要我就贴出, 各位高手分析一下错误在哪里好吗?
错误信息是Action找不到,怎么该?
[此贴子已经被作者于2006-10-19 11:19:35编辑过]