Ajuda JSF, alguém conhece esse erro!

5 respostas
N

Pessoal fiz um exemplo básico e ta dando esse erro, alguém poderia me ajudar…

org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsf/html cannot be resolved in either web.xml or the jar files deployed with this application

Brigadão pela ajuda

5 Respostas

Eduardo_Bregaida

Nino:
Pessoal fiz um exemplo básico e ta dando esse erro, alguém poderia me ajudar…

org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsf/html cannot be resolved in either web.xml or the jar files deployed with this application

Brigadão pela ajuda

Configurou o Web.xml certinho? :smiley:

N

ta assim…

web.xml

<?xml version="1.0" encoding="UTF-8"?>
 
 <!--
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
  * The ASF licenses this file to You under the Apache License, Version 2.0
  * (the "License"); you may not use this file except in compliance with
  * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
 -->
 
 <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
     xmlnssi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
     version="2.4">
 
   <display-name>MyFaces Application</display-name>
 
   <!-- servlet -->
   <servlet>
     <servlet-name>FacesServlet</servlet-name>
     <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
     <load-on-startup>1</load-on-startup>
   </servlet>
 
   <!-- servlet-mapping -->
   
   <servlet-mapping>
     <servlet-name>FacesServlet</servlet-name>
     <url-pattern>*.jsf</url-pattern>
   </servlet-mapping>
 
    <!--  The Usual Welcome File List -->
     <welcome-file-list>
       <welcome-file>index.jsp</welcome-file>
       <welcome-file>index.html</welcome-file>
     </welcome-file-list>
 
 </web-app>

Tem algum erro?

xgucax

Os jar tão na Lib da webapp?

N

estão…

afamorim

Parece que vc esta usando uma versão antiga do Myfaces.
primeiro mude, pois tem um bocado de bug
segundo, baixe o exemplo do site do myfaces, pegue as configurações do mesmo.

ps: tente descobrir o que tem de diferente que garnato que vc nunca mais vai esquecer e depois posta p/ gente e fica como historico do Forum.
:smiley:

Criado 16 de março de 2007
Ultima resposta 16 de mar. de 2007
Respostas 5
Participantes 4