我是 Java EE 的初学者。我正在使用 Eclipse Helios 3.6.2 和 Tomcat 7。我使用 JSF 2.0 创建了一个动态 Web 项目。当我运行一个简单的页面时,出现错误:
HTTP Status 404 - /first/
type Status report
message /first/
description The requested resource (/first/) is not available.
Apache Tomcat/7.0.27
代码:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>first page</title>
</h:head>
<h:body>
</h:body>
</html>
我的项目有什么问题?如何部署项目?我应该改变<Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true">
吗?