Struts2 Web App不会转发到正确的页面

时间:2015-08-11 02:49:46

标签: java jsp struts2 tomcat8 struts-action

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数据的登录页面。我已经在整个网络上进行过检查,并且没有任何帖子显示自己,甚至远程让我走上了发现这个应用程序有什么问题的路径...非常感谢指向正确方向的任何帮助。以前我是在struts 1.3.10中这样做的,但我觉得它太老了,不能和tomcat8玩得很好所以我切换到了2.3.4。我在struts 1和2之间的转换中遗漏了什么吗?

使用 Struts 2.3.4 Tomcat8 Java 1.7

更新----- 所以我有一个问题,struts2拒绝看到所谓的被覆盖的方法执行(有或没有方法=&#34; xxx&#34;在那里)或我在这里创建的任何自定义方法是更新的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文件夹之外。不知道为什么这会让我烦恼不已。

1 个答案:

答案 0 :(得分:0)

始终指定命名空间,例如

<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="/">

我非常确定错误与此有关。如果它仍然无法正常工作,请将日志打印放在任何地方,并检查服务器日志。

那说,考虑一下

  1. 在动作printing them with <s:actionerror/> and <s:actionmessage/> in the JSP上使用addActionError()addActionMessage(),而不是使用自定义errorMsg重新发明轮子。使您的操作始终扩展为ActionSupport。

  2. 迁移到2.3.24(而不是2.3.4)。很多东西已经修复,添加,抛光。为了您自己的安全,请保持最新状态。

  3. 确保您运行的是最新的Tomcat 8,而不是第一个,not fully-compatible versions