0

我知道还有另一个问题,但我只想说我看过其他所有东西或关于它的东西。所以,我目前正在构建我的 Struts 2 项目的结构。我使用 Struts 2.3.4、JBoss 7.1 和 Eclipse Indigo。我还将所有必要的 jar 包含到我的项目中。问题是当我运行我的应用程序(将项目添加到 Jboss,在服务器上运行)并转到“ http://localhost:8080/booxstore/ ”时,我得到了这个:

Etat HTTP 404 - There is no Action mapped for namespace [/] and action name [] associated with context path [/booxstore]

项目

我的 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_3_0.xsd" 
id="WebApp_ID" version="3.0">
  <display-name>Booxstore</display-name> 

  <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>
  <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>
    <constant name="struts.devMode" value="false" />
    <package name="pages" namespace="/pages" extends="struts-default">
        <action name="afficher" class="com.booxstore.controller.DisplayAction" >
            <result name="SUCCESS">/center.jsp</result>
        </action>
    </package>
 </struts>

我的行动:

/**
 * 
 */
package com.booxstore.controller;

import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionSupport;

public class DisplayAction extends ActionSupport {

    /**
     * 
     */
    private static final long serialVersionUID = 8199854978749642334L;

    public String execute() throws Exception{
        System.out.println("IN");
        return Action.SUCCESS;
    }
}

我的 JSP 只有纯文本并导入了 struts 2 标记。基本上无论我做什么,我都无法获得资源。如果我转到“ http://localhost:8080/booxstore/ ”或“ http://localhost:8080/booxstore/DisplayAction ”,我会得到“没有映射操作”,如果我尝试直接访问我得到的 jsp 404。请注意我的战争已在服务器上部署并启用。

4

2 回答 2

1

放在文件夹index.jspWebContent,将文件夹移动pagesWEB-INF,然后将 struts.xml 更改为:

<struts>
 <constant name="struts.devMode" value="false" />
 <package name="pages" extends="struts-default">
    <action name="afficher" class="com.booxstore.controller.DisplayAction" >
        <result name="SUCCESS">/WEB-INF/pages/center.jsp</result>
    </action>
 </package>
</struts>

我认为问题在于应用程序没有找到您放入配置文件的 jsps。如果META-INF您不想将它们公开,WEB-INF则文件夹不是放置 jsps 页面的地方,更适合此目的。

于 2012-07-14T21:47:16.970 回答
0

为了防止对映射的误解,请将配置浏览器插件 jar 添加到您的应用程序中。它将允许您浏览所有页面。警告!仅在开发或测试中部署依赖项,而不是在生产中。使用 Maven 配置文件进行此限制。

http://struts.apache.org/release/2.3.x/docs/config-browser-plugin.html

于 2013-07-18T13:01:10.157 回答