Struts2中关于"There is no Action mapped for namespace / and action name"的总结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2中关于"There is no Action mapped for namespace / and action name"的总结相关的知识,希望对你有一定的参考价值。

请求页面时出现这种情况的可能性有三种:

  1,struts.xml文件名错误。一定要注意拼写问题;

  2,struts.xml文件放置路径错误。一定要将此文件放置在src目录下。编译成功后,要确认是否编译到classes目录中;

  3,struts.xml文件名与文件内容不一致 (正确示例如下)

 

  例:struts.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>




</struts>

 











以上是关于Struts2中关于"There is no Action mapped for namespace / and action name"的总结的主要内容,如果未能解决你的问题,请参考以下文章

Struts2注解错误之There is no Action mapped for namespace /

Struts2的There is not Action mapped for namespace [/] 错误

Struts2中There is no Action mapped for namespace错误解决方法

Struts2中There is no Action mapped for namespace错误解决方法

Struts2-tomcat报错:There is no Action mapped for namespace / and action

问题管理-- Struts2配置struts.xml中Action访问报There is no Action mapped for namespace...