Error 404 not found - when loading project jsf with wildfly - developer studio - ubuntu

0

I have a small problem that I have not been able to solve, I'm starting wildfly 10 and jsf maven, etc ...

When creating the first JSF project, at the time of deploying the app I get it in the localhost: 8080 / proyectoWeb / index.jsf 404 error message.

this is my web.xml file:

<?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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
  <display-name>proyectoWeb</display-name>
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
  </servlet-mapping>
</web-app>

I appreciate your help and support. Thanks.

    
asked by JULIAN ALEJANDRO MORA LONDOÑO 06.08.2018 в 17:49
source

0 answers