我的項目正在使用Tomcat 7.0。tomcat項目上的struts2顯示空白頁,使用Fiddler顯示404錯誤
文件結構是:
項目
-src
--project包
----LogInActon.java
--struts.xml
-W ebContent
--Web-INF
---- LIB
------...參考罐子
---- Web.xml中
- -index.jsp
--LogInSuccess.jsp
的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="homeLogin" extends="struts-default">
<action name="logIn"
class="com.myApp.system.main.actions.LogInAction"
method="execute">
<result name="success">/logInSuccess.jsp</result>
<result name="fail">/index.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>Welcome</display-name>
<welcome-file-list>
<welcome-file>index.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>
和index.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>
<title>Welcome!</title>
</head>
<body>
<h1>Log in:</h1>
<form action="logIn">
<label for="name">Please enter your name </label>
<!--<s:textfield name="username" key="label.name1"/><br/>-->
<s:textfield name="username"/><br/><br/>
<label for="pw">Please enter your password </label>
<s:password name="pw"/><br/><br/>
<s:submit value="Log In" align="left"/>
</form>
</body>
</html>
該項目建在本地主機上成功沒有錯誤,並完全按預期工作;但是當我們部署到在線服務器時,它會顯示一個空白頁面。使用招我看到請求頭是:
GET /home HTTP/1.1
Host: dev-dev1.wherego.ca
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Connection: keep-alive
Cache-Control: max-age=0
和響應標頭是:
HTTP/1.1 404 Not Found
Date: Thu, 28 Nov 2013 02:50:15 GMT
Server: Apache-Coyote/1.1
Content-Length: 0
Connection: close
Content-Type: text/plain; charset=UTF-8
是它在調試這個任何線索??
這是一個404不存在的資源。您可以驗證您嘗試點擊的網址嗎?我最好的猜測是URL中存在一些混淆。您在本地主機上打的哪個URL以及您在服務器上嘗試的URL是什麼? –
您是否使用struts2的config-browser插件?可能有用。 http://struts.apache.org/release/2.3.x/docs/config-browser-plugin.html – Sumit
@SaifAsif在本地主機我打本地主機:8080 /家,並在服務器上它是xxx.com/home,和返回不同的結果 – James