1
resposta

Servlet not found

Já tentei criar um outro projeto e não encontro o extends HttpsServlet. Alguém poderia me ajudar Obrigada.

Meu web.xml esta assim:

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

e o pom.xml está assim: (criei seguindo os passos da aula e acrescentei o servelet e o jetty )

<?xml version="1.0" encoding="UTF-8"?>

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>br.com.alura.maven</groupId>
  <artifactId>lojaweb</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>war</packaging>

  <name>lojaweb Maven Webapp</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <version>3.1.0</version>
        <scope>provided</scope>
    </dependency>

  </dependencies>

  <build>
    <finalName>lojaweb</finalName>
    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
      <plugins>
        <plugin>
          <artifactId>maven-clean-plugin</artifactId>
          <version>3.1.0</version>
        </plugin>
        <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
        <plugin>
          <artifactId>maven-resources-plugin</artifactId>
          <version>3.0.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.8.0</version>
        </plugin>
        <plugin>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.22.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-war-plugin</artifactId>
          <version>3.2.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-install-plugin</artifactId>
          <version>2.5.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-deploy-plugin</artifactId>
          <version>2.8.2</version>
        </plugin>

        <plugin>
          <groupId>org.eclipse.jetty</groupId>
          <artifactId>jetty-maven-plugin</artifactId>
          <version>9.3.7.v20160115</version>
        </plugin>

      </plugins>
    </pluginManagement>
  </build>
</project>
1 resposta

Para resolver o erro The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

Assim como acontece com o banco de dados, o Eclipse não reconhece o serviço do Apache Tomcat apenas por ele estar presente no sistema, é necessário um plugin para o Eclipse.

No Eclipse vá em Window > Preferences > Server > Runtime Environments > Add > Apache Tomcat 8 > e defina o diretório que o Tomcat foi instalado, no meu caso C:\Program Files\Apache Software Foundation\Tomcat 8.0 ex:

Agora selecione o seu projeto e clique com botão direito > Properties > Project Facets > Runtimes > selecione o Apache Tomcat 8, aplicar e de um OK ex:

O erro deve ter desaparecido, tentando corrigir o problema, antes de tudo isto instalei no Eclipse um plugin do Tomcat e um software Jboss Apache Tomcat Integration, mas não sei até onde estes são necessários.