Struts 2:没有为名称空间[/]映射的操作

我是Struts 2的新手,我一直在关注有关Struts 2(Koushik)的视频教程。我已经创建了Struts.xml,操作类和JSP,它们与本教程中创建的相同。但是它给出了以下例外。

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>


    <package name="default" extends="struts-default">

        <action name="getTutorial" class="org.koushik.javabrains.action.TutorialAction">

            <result name="success">/success.jsp</result>

            <result name="error">/error.jsp</result>

        </action>


    </package>


</struts>

Web.xml


<?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">

  <display-name>Struts2Starter</display-name>

  <welcome-file-list>

    <welcome-file>index.html</welcome-file>

    <welcome-file>index.htm</welcome-file>

    <welcome-file>index.jsp</welcome-file>

    <welcome-file>default.html</welcome-file>

    <welcome-file>default.htm</welcome-file>

    <welcome-file>default.jsp</welcome-file>

  </welcome-file-list>


  <filter>

    <filter-name>struts2</filter-name>

    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>

  </filter>


  <filter-mapping>

    <filter-name>struts2</filter-name>

    <url-pattern>/*</url-pattern>

  </filter-mapping>


</web-app>

TutorialAction.java(我正在使用的Action类)


package org.koushik.javabrains.action;


public class TutorialAction {



    public String execute(){

        System.out.println("Hello from execute");

        return "success";

    }

}

success.jsp和error.jsp是带有一些文本的普通jsp文件。我做了很多事情来通过谷歌搜索来解决这个问题。但是没有什么不能解决这个问题。如果有人知道这背后的原因,请告诉我。我非常感谢。:)



慕斯王
浏览 795回答 3
3回答

LEATH

错误消息清楚地表明没有为与上下文路径[/ Struts2Starter]关联的名称空间[/]和操作名称[getTutorial]映射的操作这意味着操作配置在运行时不可用。查看config-browser插件以调试配置问题。要将URL正确映射到操作,需要两个参数:操作名称和名称空间。Struts在启动时会加载xml配置,并且应该知道的位置struts.xml。默认情况下,它会在classpath上查找具有类似的已知名称的文件struts.xml。然后,它解析文档并创建运行时配置。此配置用于为操作URL查找适当的配置元素。如果在请求期间未找到此类元素,则返回404错误代码,并显示以下消息:There is no Action mapped for namespace and action name。此外,此消息还包含用于查找操作配置的名称空间和操作名称。然后,您可以在中检查配置设置struts.xml。有时,存储的操作名称和名称空间ActionMapping指向错误的操作。这些值ActionMapper由插件所使用的实现方式可能有所不同。还有另一个设置可能会影响此映射器和映射,但是要点是相同的,如果您收到此消息,则使用URL不会在运行时配置中映射任何操作配置。如果您不知道应该使用哪个URL,则可以尝试使用config-browser插件查看可用的URL列表。

qq_遁去的一_1

您只需要检查操作名在任何地方都是不变的...我也遇到了相同的问题,我通过删除名称空间解决了此问题,因为我没有看到您没有提到它,并且在loginpage.jsp和struts中我也使用了不同的操作名。 xml页面..所以只看我们的动作名称
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java