Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Tomcat versão 7.026 não abre arquivo do eclipse no ubuntu 19.10 com java 11

Estou fazendo a apostila FJ21 criando um projeto usando o servlet, mas não estou conseguindo abrir o arquivo index.html no navegador, configurei a tomcat no eclipe, consigo abrir a página de bem vindo do tomcat, mas quando tento abrir localhost:8080/agenda/index.html fala que o arquivo não foi encontrado. Editei o arquivo o web.xml, mas continua a mesma coisa.

HTTP Status 404 - /agenda/index.html type Status report

message /agenda/index.html

description The requested resource (/agenda/index.html) is not available.

Apache Tomcat/7.0.26

1 resposta
solução!

Fala amigo,

dei uma pesquisada na net e encontrei um topico do fórum do GUJ discutindo o mesmo problema.

Acho que você pulou um etapa do processo, que é configurar o arquivo web.xml, na página 59 da apostila.

<?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>