Java Struts2动作映射问题

时间:2011-07-17 10:58:59

标签: java struts2

我是struts2的新手,并且正在尝试学习非常棒的struts2框架。

但我坚持提到一个非常关键的问题: There is no Action mapped for namespace / and action name Struts2Example1.

我使用的是IntelliJ IDE, 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"
         xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         id="WebApp_ID"
         version="2.5">

    <display-name>Struts2Example2</display-name>

    <filter>
        <filter-name>struts2</filter-name>
        <!--<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>-->
        <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>

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

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>

任何人都可以帮我摆脱这个错误。

由于

1 个答案:

答案 0 :(得分:2)

学习新框架的最佳方法是从struts2官方网站下载一些示例应用程序,检查它们的配置方式以及它们的运行方式 Download Example Applications:

您在查询中描述的内容似乎与配置文件存在一些映射问题 您提供的struts.xml文件中不包含任何映射条目,因此最好提供完整的详细信息