Unable to instantiate Action, xxxAction, defined for 'xxx' in namespace '/&a

Posted mthoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unable to instantiate Action, xxxAction, defined for 'xxx' in namespace '/&a相关的知识,希望对你有一定的参考价值。

出现这个问题的解决办法主要有两个

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>

struts.xml

<action name="admin" class="adminAction" method="execute">
			<result>/admin.jsp</result>
		</action>



以上是关于Unable to instantiate Action, xxxAction, defined for &#39;xxx&#39; in namespace &#39;/&a的主要内容,如果未能解决你的问题,请参考以下文章

javaweb,出现这种错误Unable to instantiate Action,请教是何原因?

Unable to instantiate Action, xxxAction, defined for 'showBlogDetails'

运行ssh项目出现"HTTP Status 500 - Unable to instantiate Action"

struts2中报异常Unable to instantiate Action是啥原因

java.lang.RuntimeException: Unable to instantiate activity ComponentInfo异常解决

解决Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient