gpt4 book ai didi

java - 为什么我的简单 Struts2 示例不起作用?

转载 作者:行者123 更新时间:2023-11-30 03:46:04 25 4
gpt4 key购买 nike

我正在使用 Glassfish 4.0 和 Eclipse Luna 4.4.0,并且已经下载了最新的 struts2 库。为了确定起见,我已将所有 struts2 jar 添加到项目中。我创建了一个动态 Web 项目。这是我的 web.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>Struts2Starter</display-name>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
<init-param>
<param-name>actionPackages</param-name>
<param-value>org.demian.javabrains.action</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</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="true" />
<package name="basicstruts2" extends="struts-default">
<action name="getTutorial" class="org.demian.javabrains.action.TutorialAction" method="execute">
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>

这是我的TutorialAction.java:

package org.demian.javabrains.action;

import java.util.Date;
import com.opensymphony.xwork2.ActionSupport;

public class TutorialAction extends ActionSupport {
private static final long serialVersionUID = 1L;

public String execute() throws Exception {
System.out.println("Hello from execute!");
Date d = new Date();
long milliseconds = d.getTime();
if (milliseconds % 2 == 0)
return SUCCESS;
else
return ERROR;
}
}

我创建的其他 2 个页面是简单的 .jsp 页面:success.jsperror.jsp,均位于主目录中。如果我输入以下网址:http://localhost:8080/Struts2Starter/success.jsp,我会看到成功页面,这意味着 Glassfish 正在工作,但如果我输入以下网址:http ://localhost:8080/Struts2Starter/getTutorial.action 我总是收到 http 错误 404。我按照此页面上的说明进行操作:struts2 documentation 。谁能告诉我我做错了什么?

编辑

我尝试通过插入此链接使用 struts2-config-browser-plugin 调试应用程序

<a href="<s:url action="index" namespace="config-browser" />">Launch the configuration browser</a>

进入我的 success.jsp 页面,如下所示:http://struts.apache.org/release/2.2.x/docs/debugging-struts.html 。当我点击该链接时,它又出现了 404 错误。我不明白。就好像 Struts2 根本不起作用一样。这是我启动服务器时的日志:https://dl.dropboxusercontent.com/u/27349592/glassfish_server_startup.txt

编辑1

我安装了 Tomcat 8.0.11,这是启动服务器时收到的错误消息: https://dl.dropboxusercontent.com/u/27349592/tomcat8_server_startup.txt

最佳答案

我终于成功了!我做的第一件事就是删除我包含的所有 jar 并仅添加我需要的 jar 。这是我包含的 jar :https://dl.dropboxusercontent.com/u/27349592/2014-09-05%2022_36_58-Preferences%20%28Filtered%29.png

之后,我在项目的“属性”->“部署程序集”中配置了库:https://dl.dropboxusercontent.com/u/27349592/2014-09-05%2022_37_29-Properties%20for%20Struts2Tutorial.png

我的web.xml文件是:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>Struts2Tutorial</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>

我的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="true" />
<package name="basicstruts2" extends="struts-default">
<action name="getTutorial" class="org.demian.javabrains.action.TutorialAction" method="execute">
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>

我仍然不知道到底是什么问题,但我猜这可能是因为 struts2 库中的依赖关系。

关于java - 为什么我的简单 Struts2 示例不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25661611/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com