Solucionado (ver solução)
Solucionado
(ver solução)
6
respostas

Servlet not found

É necessário configurar algum mapeamento de servlet no .pom? Porque estou seguindo as versões do jetty e servlets indicados na aula, porém recebo um 404 quando acesso localhost:8080/contato

6 respostas

Olá fabiano, poderia enviar o "pom.xml" e a Servlet como ela está?

Opa, claro!

Seguem pom.xml e Servlet respectivamente:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>br.com.alura.maven</groupId>
    <artifactId>lojaweb</artifactId>
    <packaging>war</packaging>
    <version>0.0.1-SNAPSHOT</version>
    <name>lojaweb Maven Webapp</name>
    <url>http://maven.apache.org</url>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
        </dependency>

    </dependencies>
    <build>
        <finalName>lojaweb</finalName>
        <plugins>
            <plugin>
                <groupId>org.eclipse.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
                <version>9.3.7.v20160115</version>
                <configuration>
                    <scanIntervalSeconds>10</scanIntervalSeconds>
                    <webApp>
                        <contextPath>/test</contextPath>
                    </webApp>
                </configuration>
            </plugin>
        </plugins>

    </build>
</project>
@WebServlet(urlPatterns= {"/contato"})
public class ContatoServlet extends HttpServlet{

    private static final long serialVersionUID = -4414875662796154881L;

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        PrintWriter writer = resp.getWriter();
        writer.println("<html><h2>Entre em contato</h2></html>");
        writer.close();
    }
}

Bom dia, Fabiano

Analisei aqui o seu código, e tenta alterar o arquivo "web.xml", para essa versão abaixo

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee 
         http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
</web-app>

Aqui funcionou. Espero ter ajudado =). Obrigado

solução!

Thiago,

obrigado pela força, mas eu consegui. Mudei a IDE (estava usando o STS) e verifiquei que eu não estava levando em consideração o contextPath na minha url.

O eclipse NEON se perde. Ele não compila e exibe a seguinte mensagem de erro:

Description    Resource    Path    Location    Type
Cannot change version of project facet Dynamic Web Module to 3.1.    lojaweb        line 1    Maven Java EE Configuration Problem

Mesmo mudando na configuração: properties -> project facet

url conforme vídeo aula: http://localhost:8080/contato

resultado: HTTP ERROR 404

Problem accessing /contato. Reason:

Not Found

Powered by Jetty:// 9.4.6.v20170531

Eric Moraes, desculpa, mas não entendi se tu fizeste um comentário ou uma pergunta.