标签:article 完整 post fine iat html method define span
出现这个问题的解决办法主要有两个
1、假设项目没有使用Spring,则struts.xml配置文件里,这个action的class属性的路径没有写完整,应该是包名.类名
2、假设项目使用了Spring。那就是applicationContext.xml里面没有为这个action定义bean。这样strus.xml中的相应action的class属性的值就是Spring配置文件里bean的id。比方:
applicationContext.xml
<bean id="adminAction" class="go.derek.action.AdminAction" scope="prototype"> </bean>
<action name="admin" class="adminAction" method="execute"> <result>/admin.jsp</result> </action>
标签:article 完整 post fine iat html method define span
原文地址:http://www.cnblogs.com/mthoutai/p/7105841.html