Tomcat 404错误

时间:2014-11-28 02:52:29

标签: java spring tomcat java-ee

我正在尝试使用给定扩展名'/ jee'部署的EE应用程序但是在尝试访问时遇到404错误。我已将此行添加到我的server.xml:

 <Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true">

    <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t &quot;%r&quot; %s %b" prefix="localhost_access_log" suffix=".txt"/>

    <Context docBase="C:\Users\user\workspace\EE\j2eeapplication\target\j2eeapplication-0.0.1-SNAPSHOT" path="/jee" reloadable="true" />

  </Host>

我想让它重定向到我的主流,它有一个'欢迎'视图

    <view-state id="welcome">
</view-state>

和我的welcome.xhtml与main-flow.xml位于同一个文件夹中。我不确定它是否值得一提但是我在web.xml中指定的欢迎文件:

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

这是我的index.jsp:

    <?xml version="1.0" encoding="ISO-8859-1" ?>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Refresh" content="0; URL=app/main" />
</head>
<body>

</body>
</html>

我是EE的新手,我很难过为什么我会收到404错误,有什么我可以尝试的吗?

0 个答案:

没有答案