2016-06-30 9 views
-1

私はstrutsフレームワークでJSPページをコーディングしています。実行中に404エラーが発生しています。Eclipseでjspページを実行しているときに404エラーが発生しました

login.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>Insert title here</title> 
</head> 
<body> 
<s:form action="login" method="post"> 
<s:textfield name="id" label="Employee Id"></s:textfield> 
<s:textfield name="name" label="Employee Name"></s:textfield> 
<s:submit value="submit"></s:submit> 
</s:form> 
</body> 
</html> 

LoginAction.java

package Login; 

public class LoginAction { 
    private int id; 
    private String name; 

    public int getId() { 
     return id; 
    } 

    public String getName() { 
    return name; 
    } 

    public String execute(){ 
     return "success"; 
} 
} 

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="Login" extends="struts-default" namespace="/" > 
    <default-action-ref name="upload" /> 


     <action name="login" class="Login.LoginAction" method="execute"> 
<result name="success">products.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://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>Product</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>Login.jsp</welcome-file> 
    </welcome-file-list> 
    </web-app> 

products.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>product images</title> 

</head> 
<body> 
<a href="productdetails.jsp"><img src="images/bp.jpg" class="tooltip" title="BP monitor" id="BP monitor"> </a> 
<a href="productdetails.jsp"><img src="images/sethescope.jpg" class="tooltip" title="sethescope" id="sethescope"></a> 


    </body> 
</html> 

プロジェクトエクスプローラ: enter image description here 結果: enter image description here

+0

でTomcatのDOCを確認してください。 –

+0

私はそれをはっきりさせることができますか?私のウェルカムページはLogin.jspです。なぜアクセスできないのですか? –

+0

これはエラーです: –

答えて

0

あなたのURLは、あなたがあなたのwarファイル名でWebアプリケーションの一部を、欠けているhttp://localhost:8080/webapp/products でなければなりません。

+0

http:// localhost:8080/hello/- これは以前の私のプロジェクトでしたが、うまくいきました。なぜ新しいものが動作しないのですか? –

+0

プロジェクト名をよく見てください。 –

+0

プロジェクト名は –

0

Raj、 大文字と小文字を区別した正確なコンテキストパス(デフォルトでwarファイル名)をURLで使用する必要があります。あなたのコンテキストが「製品」のtryローカルホストされている場合:8080 /製品

またあなたのウェルカムページにアクセスできないhttp://tomcat.apache.org/tomcat-6.0-doc/config/context.html#Introduction

関連する問題