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

Erro ao executar o Jetty - Error 404 - Not Found

Pessoal, boa tarde!

Estou tendo problemas para executar o jetty na minha maquina, esta dando o seguinte erro

Error 404 - Not Found.

No context on this server matched or handled this request.
Contexts known to this server are:
/test ---> o.e.j.m.p.JettyWebAppContext@726a17c4{/test,file:///C:/Users/sonek/workspace/lojaWeb/src/main/webapp/,AVAILABLE}{file:///C:/Users/sonek/workspace/lojaWeb/src/main/webapp/}

Segue o arquivo pom.xml

<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>1.0.0-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>
            </plugin>
        </plugins>
    </build>
</project>
3 respostas

Oi Julio, qual endereço vc tentou acessar? localhost:8080? ou localhost:8080/test? parece que o segundo é o correto.

Bem quando uso o localhost:8080/test esta indicando o seguinte erro

HTTP ERROR: 404

Problem accessing /test. Reason:

    Not Found
solução!

Refiz o projeto e o arquivo começou a compilar novamente '-'