1

以下のコードを作成しました。しかし、apache tomcatv6.0 サーバーで実行しているときに、最初のページ、つまり Login.jsp が正常にロードされているのに、2 番目のページ viz Welcome.jsp がロードされていません。Java Resources フォルダー内の src フォルダー内に struts.xml を作成しました。Eclipse IDE を使用しています。

StrutsDemo.java

package com.vishnu.struts;

import com.opensymphony.xwork2.ActionSupport;

public class StrutsDemo extends ActionSupport{
    String username;
    String password;
    String returnString=null;

    public String execute()
    {
        if(getUsername().equals("abc")&&getPassword().equals("abc123"))
        {

            returnString=SUCCESS;

        }
        else {
            returnString=ERROR;
        }
        return returnString;


    }

    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;
}

}  

ログイン.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<%@ 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=ISO-8859-1">
<title>Still TRY TRY...</title>
</head>
<body>

<s:textfield name="username"/>
<s:password name="password" value="Password"/>
<s:submit method="execute" label="Click" action="doLogin"/>


</body>
</html>

ようこそ.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <%@ 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=ISO-8859-1">
<title>Thank God...</title>
</head>
<body>
<h1>Gud to see you!!!</h1>

</body>
</html>

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>

    <package name="default" namespace="/" extends="struts-default">


        <action name="doLogin" class="com.vishnu.struts.StrutsDemo" method="execute">

            <result name="success">/Welcome.jsp</result>
            <result name="error">/Login.jsp</result>
        </action>
        </package>
</struts>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>STRUTS INTRO-VISHNU</display-name>

    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>


  <welcome-file-list>
<welcome-file>Login.jsp</welcome-file>

4

3 に答える 3

0

IDE でプロジェクトを消去し、サーバーも再度実行してみてください。動作する可能性があります..

于 2013-11-12T11:05:16.097 に答える
0

Login.jsp で次のコードを使用します。

<form action="doLogin" method="POST">
<!--
Put all the content of Web Page here.,.
-->
</from>
于 2014-06-26T06:01:26.053 に答える