本文主要是介绍Tomcat 启动时 There is no Action mapped for namespace [/] and action name [] associated with context pa,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Tomcat 启动时 There is no Action mapped for namespace [/] and action name [] associated with context path []. - [unknown location]
问题:
struts.xml中:
<struts>
<package name="default" extends="struts-default" namespace="/">
<action name="loginPage" class="com.lc.test.action.LoginAction" method="loginPage">
<result name="success">/loginPage.jsp</result>
</action>
</package>
</struts>
loginPage.jsp文件在WEB-INF目录下,系统找不到这个文件,会出现这个问题。
解决:把这个文件放到WEB-INF同一个目录下。
这篇关于Tomcat 启动时 There is no Action mapped for namespace [/] and action name [] associated with context pa的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!