pb java j2ee

pb java j2ee - Java - Programmation

Marsh Posté le 27-11-2008 à 15:59:10    

Bonjour,
alors:
> - jre6
> - eclipse-jee-ganymede-SR1-win32
> - myfaces-core-1.1.5 (g aussi essayed les myfaces-core-1.2.5-bin)
> - jboss-4.2.3.GA-jdk6
> - richfaces-ui-3.2.2.SR1
>
 
>
> MERKI j' suis en galere grave ;)
> mon pb vient exclusivement des rich faces car un projet utilisant jsf et donc l
> implementation myfaces marche nikel
>
> 08:49:42,312 ERROR [[/grrrr]] Exception lors de l'envoi de l'é©vé¨nement contexte
> initialisé (context initialized) A  l'instance de classe d'écoute (listener)
> org.jboss.web.jsf.integration.config.JBossJSFConfigureListener
> com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED!
> org.apache.commons.digester.Digester

Reply

Marsh Posté le 27-11-2008 à 15:59:10   

Reply

Marsh Posté le 27-11-2008 à 16:49:55    

c'est une erreur de lecture de ton fichier de configuration, lu avec Digester.
 
Ton fichier a peut-être une balise mal fermée, ou un truc du genre.


---------------
HFR - Mes sujets pour Chrome - Firefox - vérifie les nouveaux posts des topics suivis/favoris
Reply

Marsh Posté le 28-11-2008 à 09:11:11    

merci je v les passer a xml spy sinon je poste le tt sur le forum ;)
bon ben verified avec xml spy ils semblent valides... :cry:


Message édité par schum-hacker le 28-11-2008 à 09:45:10
Reply

Marsh Posté le 28-11-2008 à 09:33:13    

faces-config:
 
<?xml version="1.0" encoding="UTF-8"?>
 
<faces-config
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ [...] .xsd&#034;
    version="1.2">
 
<managed-bean>  
     <managed-bean-name>helloBean</managed-bean-name>  
     <managed-bean-class>HelloBean</managed-bean-class>  
     <managed-bean-scope>request</managed-bean-scope>  
</managed-bean>
 
</faces-config>
 
web.xml:
 
<?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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ [...] .xsd&#034; id="WebApp_ID" version="2.5">
  <display-name>grrrr</display-name>
  <filter>  
   <display-name>RichFaces Filter</display-name>  
   <filter-name>richfaces</filter-name>  
   <filter-class>org.ajax4jsf.Filter</filter-class>  
</filter>  
<filter-mapping>  
   <filter-name>richfaces</filter-name>  
   <servlet-name>Faces Servlet</servlet-name>  
   <dispatcher>REQUEST</dispatcher>  
   <dispatcher>FORWARD</dispatcher>  
   <dispatcher>INCLUDE</dispatcher>  
</filter-mapping>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <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>/faces/*</url-pattern>
  </servlet-mapping>
</web-app>


Message édité par schum-hacker le 28-11-2008 à 09:34:11
Reply

Marsh Posté le 28-11-2008 à 09:33:40    

hello.jsp:
 
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<%@taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<body>
<f:view>
<h:outputText value="Name :" />  
<h:form>  
   <h:inputText value="#{helloBean.name}">  
      <a4j:support event="onchange" reRender="greeting" />  
   </h:inputText>  
</h:form>  
<h:outputText id="greeting" value="Hello #{helloBean.name} !" />
  </f:view>
</body>
</html>
 
index.jsp:
 
 
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<jsp:forward page="hello.jsf" />
</body>
</html>


Message édité par schum-hacker le 28-11-2008 à 09:34:34
Reply

Marsh Posté le 28-11-2008 à 09:44:41    

mon bean: HelloBean ds le default package
 
public class HelloBean {  
     private String name;  
 
     public String getName() {  
        return name;  
     }  
 
     public void setName(String name) {  
        this.name = name;  
     }  
}

Reply

Marsh Posté le 28-11-2008 à 09:57:04    

sinon, en collant ton erreur dans google :  
https://javaserverfaces.dev.java.ne [...] ssues.html
voire même
http://www.mail-archive.com/users@ [...] 45522.html
 
mais plus la première, non ?


---------------
HFR - Mes sujets pour Chrome - Firefox - vérifie les nouveaux posts des topics suivis/favoris
Reply

Marsh Posté le 28-11-2008 à 10:12:53    

en collant ds google j arrive a ca mais g pas trouved la solution ...
http://www.google.fr/search?hl=fr& [...] =&aq=f&oq=

Reply

Marsh Posté le 28-11-2008 à 11:09:31    

tu cherches l'erreur en français, ça limite ton champ de recherche.
avec com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! tu tombes par exemple sur les deux sites linkés plus haut.


---------------
HFR - Mes sujets pour Chrome - Firefox - vérifie les nouveaux posts des topics suivis/favoris
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed