Servlet Faces - Error in context with path

1

Good morning,

As I said in another topic, it's not my web area but I'm trying to kkkk ... After adding a responsive template with Prologue name I get the following error.

GRAVE: Servlet.service() for servlet [Faces Servlet] in context with path [/ibmo] threw exception [javax/servlet/jsp/jstl/core/Config] with root cause

java.lang.ClassNotFoundException: javax.servlet.jsp.jstl.core.Config

pom.xml

<!-- Repositórios -->

    

    <!-- PRIMEFACES -->
    <dependency>  
        <groupId>org.primefaces</groupId>  
        <artifactId>primefaces</artifactId>  
        <version>5.3</version>  
    </dependency>

    <!-- JSF API -->
    <dependency>
         <groupId>com.sun.faces</groupId>
         <artifactId>jsf-api</artifactId>
         <version>2.1.13</version>
    </dependency>

    <!-- JSF IMPL -->
    <dependency>
          <groupId>com.sun.faces</groupId>
          <artifactId>jsf-impl</artifactId>
          <version>2.1.13</version>
    </dependency>

    <!-- SERVLET API -->
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <version>3.0.1</version>
    </dependency>

    <!-- Implementação do JSF -->
    <dependency>
        <groupId>org.glassfish</groupId>
        <artifactId>javax.faces</artifactId>
        <version>2.2.8</version>
        <scope>compile</scope>
    </dependency>

    
asked by anonymous 15.12.2015 / 12:31

1 answer

2

Add in your pom.xml:

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jsp-api</artifactId>
    <version>2.0</version>
</dependency>

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>

And see if it works, this error ClassNotFoundException usually occurs when some library is missing from your project

    
15.12.2015 / 12:38