[求助]struts资源找不到的问题
<a href="/superAdmin.do?method=showAllAdmin">xxx</a>struts的配置文件里
<action
attribute="superAdminForm"
input="/superadmin/superAdmin.jsp"
name="superAdminForm"
parameter="method"
path="/superAdmin"
scope="request"
type="org.springframework.web.struts.DelegatingActionProxy" >
<forward
name="showAdminGo"
path="/superadmin/show.jsp"
redirect="true" />
</action>
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" value="/WEB-INF/applicationContext.xml" />
</plug-in>
spring配置文件
<bean name="/superAdmin" class="edu.pgms.struts.action.SuperAdminAction" singleton="false">
</bean>