Olá, estou estudando a apostila FJ21 ([url]http://www.caelum.com.br/download/caelum-java-web-fj21.pdf[/url]) e estou tendo um problema no exercicio 1 do capitulo 4 (pagina 53).
Eu não estou conseguindo acessar a página [url]http://localhost:8080/fj21-agenda/[/url] pois ele retorna o seguinte erro no navegador:
HTTP Status 404 - /fj21-agenda/
type Status report
message /fj21-agenda/
description The requested resource (/fj21-agenda/) is not available.
Apache Tomcat/6.0.33
Eu consigo acessar o http://localhost:8080/ sem problema nenhum.
Eis o arquivo .xml (localizado em workspace\fj21-agenda\WebContent\WEB-INF):
<?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_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>fj21-agenda</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
Eis o arquivo .html (localizado em workspace\fj21-agenda\WebContent):
<html>
<head>
<title>Projeto fj21-agenda</title>
</head>
<body>
Primeira página do projeto fj21-agenda
</body>
</html>
Agradeço desde já.