Struts2 Web 应用程序未转发到正确的页面
Struts2 Web App Doesn't Forward to the Correct Page
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="SOIndex" extends="struts-default" namespace="/">
<action name="index" >
<result> /WEB-INF/jsp/SOLoginPage.jsp </result>
</action>
</package>
<package name="SOLogin" extends="struts-default" >
<action name="login" class="com.azure.action.SOLoginAction"
method="execute" >
<result name="success"> /WEB-INF/jsp/SOBookStore.jsp </result>
<result name="failure"> /WEB-INF/jsp/SOLoginPage.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"
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> SO Book Store Web Application </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>
</web-app>
Action.java
package com.azure.action;
public class SOLoginAction {
private String username;
private String password;
private String errorMsg;
public String execute() throws Exception {
String mapping = "";
if( (this.username.equalsIgnoreCase("JE90") && this.password.equals("admin")) ) {
mapping = "success";
errorMsg = "";
}
else {
mapping = "failure";
errorMsg = "Incorrect username or password.\nReview credentials and try again.";
}
return mapping;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
}
SOLoginPage.jsp
<%@ page language="java" contentType="text/html; charset=US-ASCII"
pageEncoding="US-ASCII"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>SO Book Store Login Page! </title>
</head>
<body>
<font color="red"><s:property value="errorMsg" /></font>
<s:form action="login" method="post">
<s:textfield name="username" label="Username" />
<s:password name="password" label="Password" />
<s:submit value="Login" />
</s:form>
</body>
</html>
SOBookStore.jsp
<%@ page language="java" contentType="text/html; charset=US-ASCII"
pageEncoding="US-ASCII"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title> SO Book Store </title>
</head>
<body>
<h1> Login Successful <s:property value="username" />! </h1>
</body>
</html>
这些是我目前正在处理的所有文件。我现在遇到的问题是,无论我输入的用户名和密码有多么错误,struts2 都不会将我发送到包含更新的 errorMsg 数据的登录页面。我检查了整个网络,没有 post 出现,甚至远程让我走上这条路,找出这个应用程序有什么问题......非常感谢任何指向正确方向的帮助。以前我在 struts 1.3.10 中这样做,但我认为它太老了,不能很好地与 tomcat8 一起玩,所以我切换到 2.3.4。我在 struts 1 和 2 之间的过渡中遗漏了什么吗?
正在使用
Struts2.3.4
Tomcat8
Java1.7
更新-----
所以我遇到一个问题,struts2 拒绝看到所谓的重写方法执行(有或没有方法 ="xxx" 在那里)或我在这里创建的任何自定义方法是更新的 struts.xml
<struts>
<constant name="struts.devMode" value="true" />
<package name="LoginAction" namespace="/jsp" extends="struts-default">
<action name="login" class="com.azure.action.SOlLoginAction" method="authenticate">
<result name="loginSuccess"> /jsp/SOBookStore.jsp </result>
<result name="loginFail"> /jsp/SOLoginPage.jsp </result>
</action>
</package>
</struts>
我现在可能做错了什么?我知道这是可能的,因为我看到其他人使用他们自己的方法而不是覆盖执行。我需要告诉 struts 使用自定义方法吗? PS 我刚刚将 jsp 文件移到了 WEB-INF 文件夹之外。不知道为什么这让我如此烦恼。
始终指定命名空间,例如
<package name="SOLogin" extends="struts-default" namespace="auth">
和
<s:form action="login" method="post" namespace="auth">
(或更好,使用 s:url)。
在你的情况下,你甚至不需要两个包,所以从简单、标准、有效的东西开始:
<package name="SOIndexAndLogin" extends="struts-default" namespace="/">
<action name="index" >
<result> /WEB-INF/jsp/SOLoginPage.jsp </result>
</action>
<action name="login" class="com.azure.action.SOLoginAction">
<result name="success"> /WEB-INF/jsp/SOBookStore.jsp </result>
<result name="failure"> /WEB-INF/jsp/SOLoginPage.jsp </result>
</action>
</package>
和
<s:form action="login" method="post" namespace="/">
我很确定错误与此有关。如果还是不行,就到处打印日志,查看服务器日志。
也就是说,考虑一下
在操作上使用 addActionError()
和 addActionMessage()
,printing them with <s:actionerror/>
and <s:actionmessage/>
in the JSP,而不是用您的自定义 errorMsg
重新发明轮子。让您的操作始终扩展 ActionSupport。
正在迁移到 2.3.24(而不是迁移到 2.3.4)。很多东西都已修复、添加和完善。为了您自己的安全,请保持最新状态。
确保你是运行最新的Tomcat8,不是第一个,not fully-compatible versions。
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="SOIndex" extends="struts-default" namespace="/">
<action name="index" >
<result> /WEB-INF/jsp/SOLoginPage.jsp </result>
</action>
</package>
<package name="SOLogin" extends="struts-default" >
<action name="login" class="com.azure.action.SOLoginAction"
method="execute" >
<result name="success"> /WEB-INF/jsp/SOBookStore.jsp </result>
<result name="failure"> /WEB-INF/jsp/SOLoginPage.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"
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> SO Book Store Web Application </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>
</web-app>
Action.java
package com.azure.action;
public class SOLoginAction {
private String username;
private String password;
private String errorMsg;
public String execute() throws Exception {
String mapping = "";
if( (this.username.equalsIgnoreCase("JE90") && this.password.equals("admin")) ) {
mapping = "success";
errorMsg = "";
}
else {
mapping = "failure";
errorMsg = "Incorrect username or password.\nReview credentials and try again.";
}
return mapping;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
}
SOLoginPage.jsp
<%@ page language="java" contentType="text/html; charset=US-ASCII"
pageEncoding="US-ASCII"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>SO Book Store Login Page! </title>
</head>
<body>
<font color="red"><s:property value="errorMsg" /></font>
<s:form action="login" method="post">
<s:textfield name="username" label="Username" />
<s:password name="password" label="Password" />
<s:submit value="Login" />
</s:form>
</body>
</html>
SOBookStore.jsp
<%@ page language="java" contentType="text/html; charset=US-ASCII"
pageEncoding="US-ASCII"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title> SO Book Store </title>
</head>
<body>
<h1> Login Successful <s:property value="username" />! </h1>
</body>
</html>
这些是我目前正在处理的所有文件。我现在遇到的问题是,无论我输入的用户名和密码有多么错误,struts2 都不会将我发送到包含更新的 errorMsg 数据的登录页面。我检查了整个网络,没有 post 出现,甚至远程让我走上这条路,找出这个应用程序有什么问题......非常感谢任何指向正确方向的帮助。以前我在 struts 1.3.10 中这样做,但我认为它太老了,不能很好地与 tomcat8 一起玩,所以我切换到 2.3.4。我在 struts 1 和 2 之间的过渡中遗漏了什么吗?
正在使用 Struts2.3.4 Tomcat8 Java1.7
更新----- 所以我遇到一个问题,struts2 拒绝看到所谓的重写方法执行(有或没有方法 ="xxx" 在那里)或我在这里创建的任何自定义方法是更新的 struts.xml
<struts>
<constant name="struts.devMode" value="true" />
<package name="LoginAction" namespace="/jsp" extends="struts-default">
<action name="login" class="com.azure.action.SOlLoginAction" method="authenticate">
<result name="loginSuccess"> /jsp/SOBookStore.jsp </result>
<result name="loginFail"> /jsp/SOLoginPage.jsp </result>
</action>
</package>
</struts>
我现在可能做错了什么?我知道这是可能的,因为我看到其他人使用他们自己的方法而不是覆盖执行。我需要告诉 struts 使用自定义方法吗? PS 我刚刚将 jsp 文件移到了 WEB-INF 文件夹之外。不知道为什么这让我如此烦恼。
始终指定命名空间,例如
<package name="SOLogin" extends="struts-default" namespace="auth">
和
<s:form action="login" method="post" namespace="auth">
(或更好,使用 s:url)。
在你的情况下,你甚至不需要两个包,所以从简单、标准、有效的东西开始:
<package name="SOIndexAndLogin" extends="struts-default" namespace="/">
<action name="index" >
<result> /WEB-INF/jsp/SOLoginPage.jsp </result>
</action>
<action name="login" class="com.azure.action.SOLoginAction">
<result name="success"> /WEB-INF/jsp/SOBookStore.jsp </result>
<result name="failure"> /WEB-INF/jsp/SOLoginPage.jsp </result>
</action>
</package>
和
<s:form action="login" method="post" namespace="/">
我很确定错误与此有关。如果还是不行,就到处打印日志,查看服务器日志。
也就是说,考虑一下
在操作上使用
addActionError()
和addActionMessage()
,printing them with<s:actionerror/>
and<s:actionmessage/>
in the JSP,而不是用您的自定义errorMsg
重新发明轮子。让您的操作始终扩展 ActionSupport。正在迁移到 2.3.24(而不是迁移到 2.3.4)。很多东西都已修复、添加和完善。为了您自己的安全,请保持最新状态。
确保你是运行最新的Tomcat8,不是第一个,not fully-compatible versions。