IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JSF Java Discussion :

[Spring / Richfaces] object <rich: ne s'affichent pas


Sujet :

JSF Java

  1. #1
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut [Spring / Richfaces] object <rich: ne s'affichent pas
    Bonjour à tous j'ai une application spring3.2 +richfaces 4.3.1
    Une fois lancé , les objets <rich ne s'affichent pas

    la page :index.xhtml
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     
    <html xmlns="http://www.w3.org/1999/xhtml"
    	xmlns:h="http://java.sun.com/jsf/html"
    	xmlns:rich="http://richfaces.org/rich"
    	xmlns:a4j="http://richfaces.org/a4j"
    	xmlns:c="http://java.sun.com/jstl/core"
    	xmlns:ui="http://java.sun.com/jsf/facelets"
    	xmlns:f="http://java.sun.com/jsf/core">
    	<head>
    		<title>Page principal</title>
    		<meta http-equiv="content-type" content="text/html; charset=utf-8" />
    	</head>
    	<body>
    		<div id="lecorps">	
    			qui va chez moi?
    			<rich:dataTable>
    				<rich:dataTable >
    					<rich:columnGroup>
    						<rich:column>gaga</rich:column>
    						<rich:column>rere</rich:column>
    					</rich:columnGroup>
    					<rich:columnGroup>
    						<rich:column>gaga4</rich:column>
    						<rich:column>rere4</rich:column>
    					</rich:columnGroup>
     
    				</rich:dataTable>
    			</rich:dataTable>
    		</div>
    	</body>
    </html>
    web.xml
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    <?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/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
      <display-name>apli</display-name>
       <context-param>
        	<param-name>log4jConfigLocation</param-name>
        	<param-value>classpath:log4j.properties</param-value>
        </context-param>
        <listener>
        	<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
        </listener>
         <context-param>
        	<param-name>contextConfigLocation</param-name>
        	<param-value>classpath:applicationContext.xml</param-value>
        </context-param>
        <listener>
        	<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
     
            <listener>
        	<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
        </listener>
     
           <context-param>
    	    <param-name>org.richfaces.skin</param-name>
    	    <param-value>blueSky</param-value>
    	</context-param>
     
    	<context-param>
    		 <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
    		 <param-value>com.sun.facelets.FaceletViewHandler</param-value>
    	</context-param>
     
    	<context-param>
    	     <param-name>javax.faces.DISABLE_FACELET_JSF_VIEWHANDLER</param-name>
    	     <param-value>true</param-value>
    	</context-param>
     
    	<context-param>
    		<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
    		<param-value>.xhtml</param-value>
      	</context-param>
    	  <session-config>
            <session-timeout>30</session-timeout>
        </session-config>
     
     
      <welcome-file-list>
        <welcome-file>index.html</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>*.jsf</url-pattern>
            </servlet-mapping>
    </web-app>
    et mon faces config
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    <?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/web-facesconfig_2_1.xsd"
        version="2.1">
    	<application>
        	<el-resolver>org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver>
      	</application>
    </faces-config>
    Quelqu'un pour m'aider svp

  2. #2
    Membre chevronné
    Avatar de fxrobin
    Homme Profil pro
    Architecte SI, Java Fan, API Manager
    Inscrit en
    Novembre 2007
    Messages
    875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Architecte SI, Java Fan, API Manager
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    Tu as bien mis les jar RichFaces dans "WEB-INF/lib" ?

  3. #3
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut
    Merci de l'attention
    oui les bibliotheques richfaces sont bien integres
    Ci joint l'image des lib
    Images attachées Images attachées  

  4. #4
    Membre chevronné
    Avatar de fxrobin
    Homme Profil pro
    Architecte SI, Java Fan, API Manager
    Inscrit en
    Novembre 2007
    Messages
    875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Architecte SI, Java Fan, API Manager
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    Montre le code d'une page qui essayer d'utiliser des composants RichFaces.

  5. #5
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut
    Pour l'instant j'ai pas encore de beans
    Je testai juste pour voir si les composants etaient affiches avec le "index.xhtml" affiche dans le premier post.

  6. #6
    Membre chevronné
    Avatar de fxrobin
    Homme Profil pro
    Architecte SI, Java Fan, API Manager
    Inscrit en
    Novembre 2007
    Messages
    875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Architecte SI, Java Fan, API Manager
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    J'avais zappé ton fichier .xhtml


    remplace ton tag "body" par "h:body"

    et pareil "head" par "h:head"

    et ça devrait aller mieux.

  7. #7
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut
    Salut
    Je viesn d'essayer avec ca :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:a4j="http://richfaces.org/a4j"
     	  xmlns:rich="http://richfaces.org/rich">
     
    	<f:view>
     <h:head></h:head>
     <h:body>
     	<h:form>
        <rich:panel header="Richfaces running on JBoss AS 7">
     
          <ul>
            <li>RichFaces is a component library for JSF</li>
            <li>easily integrating AJAX capabilities.</li>
         </ul>
        </rich:panel>
     
         <rich:panel header="Panel with default Look-n-feel">
            <h:graphicImage value="/images/icons/common/rf.png" style="float:right" alt="rf" />
            RichFaces is a component library for JSF and an advanced framework for
            easily integrating AJAX capabilities into business applications.
            <ul>
                <li>100+ AJAX enabled components in two libraries</li>
                <li>a4j: page centric AJAX controls</li>
                <li>rich: self contained, ready to use components</li>
                <li>Whole set of JSF benefits while working with AJAX</li>
                <li>Skinnability mechanism</li>
                <li>Component Development Kit (CDK)</li>
                <li>Dynamic resources handling</li>
                <li>Testing facilities for components, actions, listeners, and pages</li>
                <li>Broad cross-browser support</li>
                <li>Large and active community</li>
            </ul>
        </rich:panel>
        <p>
            <b>Panel without header:</b>
        </p>
        <rich:panel>
            <p>
                <b>JSF 2 and RichFaces 4:</b>
            </p>
     
            <p>We are working hard on RichFaces 4.0 which will have full JSF 2 integration. That is not all though, here is a
                summary of updates and features:</p>
            <ul>
                <li>Redesigned modular repository and build system.</li>
                <li>Simplified Component Development Kit with annotations, faces-config extensions, advanced templates support
                    and more..</li>
                <li>Ajax framework improvements extending the JSF 2 specification.</li>
                <li>Component review for consistency, usability, and redesign following semantic HTML principles where
                    possible.</li>
                <li>Both server-side and client-side performance optimization.</li>
                <li>Strict code clean-up and review.</li>
            </ul>
        </rich:panel>
        </h:form>
      </h:body>
     </f:view>
     
    </html>
    mais ca ne marche toujours pas j'ai surement du louper un truc

  8. #8
    Membre chevronné
    Avatar de fxrobin
    Homme Profil pro
    Architecte SI, Java Fan, API Manager
    Inscrit en
    Novembre 2007
    Messages
    875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Architecte SI, Java Fan, API Manager
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    Enlève le f:view

  9. #9
    Membre chevronné
    Avatar de fxrobin
    Homme Profil pro
    Architecte SI, Java Fan, API Manager
    Inscrit en
    Novembre 2007
    Messages
    875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Architecte SI, Java Fan, API Manager
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    exporte ton appli en WAR et vérifie bien que les JAR de RichFaces sont bien dans WEB-INF/lib


    Peux tu montrer une capture d'écran de ton navigateur ainsi que le code HTML reçu par ton navigateur.

  10. #10
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut
    ci-joint le zip
    encore merci
    Fichiers attachés Fichiers attachés

  11. #11
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut
    Oui j'ai bien verrifié les bibliotheques y sont
    Pour la capture du navigateur je le joint a ce message
    Images attachées Images attachées  

  12. #12
    Membre chevronné
    Avatar de fxrobin
    Homme Profil pro
    Architecte SI, Java Fan, API Manager
    Inscrit en
    Novembre 2007
    Messages
    875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Architecte SI, Java Fan, API Manager
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    Bonjour Amadou,

    j'ai trouvé la solution à ton problème : il faut que tu retires ce paramètre de ton web.xml

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
        <context-param>
             <param-name>javax.faces.DISABLE_FACELET_JSF_VIEWHANDLER</param-name>
             <param-value>true</param-value>
        </context-param>
    Ce paramètre quand il est mis à "true" indique à JSF de basculer en mode "1.2" et de désactiver Facelets. Or RichFaces 4, que tu utilises, réclame du JSF 2.

    J'ai testé et cela fonctionne

    Tiens nous au courant ...
    A bientôt.

  13. #13
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut
    Merci je vai tester

  14. #14
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut
    Bonjour
    J'arrive pas a tester je me retrouve avec un
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    No Spring WebApplicationInitializer types detected on classpath
    alors que j'ai seulement fait un update maven project

  15. #15
    Membre chevronné
    Avatar de fxrobin
    Homme Profil pro
    Architecte SI, Java Fan, API Manager
    Inscrit en
    Novembre 2007
    Messages
    875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Architecte SI, Java Fan, API Manager
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    Il te manque Spring-web dans tes dépendences, je pense.

    http://static.springsource.org/sprin...itializer.html

  16. #16
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut
    Bonjour j'essaie depuis tout a l'heure, j'ai bien regarde spring-webil est a l'interieur j'ai exprotre en jar histoire de voir.
    Il est bien a l'interieur.

    Merci quand meme je vai continuer de creuser je sais que je vous fatigue avce mes interminables problemes

  17. #17
    Membre chevronné
    Avatar de fxrobin
    Homme Profil pro
    Architecte SI, Java Fan, API Manager
    Inscrit en
    Novembre 2007
    Messages
    875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Architecte SI, Java Fan, API Manager
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    disons que maintenant ce n'est plus un problème RichFaces mais un problème Spring ...

  18. #18
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut
    Oui merci je crois que je vai aller me promener du cote du forum Spring .

    Encore mille merci

  19. #19
    Membre chevronné
    Avatar de fxrobin
    Homme Profil pro
    Architecte SI, Java Fan, API Manager
    Inscrit en
    Novembre 2007
    Messages
    875
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Architecte SI, Java Fan, API Manager
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    Tiens regarde :
    http://stackoverflow.com/questions/8...ject-correctly


    si tu es sous Linux, une piste de solution ici :
    https://answers.atlassian.com/questi...not-be-started



    Sinon montre ta stacktrace et le résultat à l'écran ;-)

  20. #20
    Membre actif Avatar de amadoulamine1
    Inscrit en
    Avril 2005
    Messages
    260
    Détails du profil
    Informations forums :
    Inscription : Avril 2005
    Messages : 260
    Points : 270
    Points
    270
    Par défaut
    D'acors j'avai vu cette page mais je n'ai pas le meme probleme que lui vu qu'il a une erreur de type severe
    moi j'ai ceci en console

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    mars 15, 2013 4:07:34 PM org.apache.catalina.core.AprLifecycleListener init
    INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files (x86)\Java\jre7\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files (x86)/Java/jre7/bin/client;C:/Program Files (x86)/Java/jre7/bin;C:/Program Files (x86)/Java/jre7/lib/i386;C:\oracle\11.2.0\client_1;C:\Program Files (x86)\HP SimplePass 2011\;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Broadcom\Broadcom 802.11\Driver;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;C:\Program Files (x86)\QT Lite\QTSystem;C:\Windows\SysWOW64;c:\Program Files\Microsoft SQL Server\110\Tools\Binn\;c:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;c:\Program Files\Microsoft SQL Server\110\DTS\Binn\;c:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\;c:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\QT Lite\QTSystem\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MySQL\MySQL Server 5.5\bin;G:\eclipse juno;;.
    mars 15, 2013 4:07:34 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:application-webapp' did not find a matching property.
    mars 15, 2013 4:07:34 PM org.apache.coyote.AbstractProtocol init
    INFO: Initializing ProtocolHandler ["http-bio-8080"]
    mars 15, 2013 4:07:34 PM org.apache.coyote.AbstractProtocol init
    INFO: Initializing ProtocolHandler ["ajp-bio-8009"]
    mars 15, 2013 4:07:34 PM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 404 ms
    mars 15, 2013 4:07:34 PM org.apache.catalina.core.StandardService startInternal
    INFO: Démarrage du service Catalina
    mars 15, 2013 4:07:34 PM org.apache.catalina.core.StandardEngine startInternal
    INFO: Starting Servlet Engine: Apache Tomcat/7.0.23
    mars 15, 2013 4:07:44 PM org.apache.catalina.core.ApplicationContext log
    INFO: No Spring WebApplicationInitializer types detected on classpath
    mars 15, 2013 4:07:44 PM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Initialisation de Mojarra 2.1.17 ( 20130107-1935 https://svn.java.net/svn/mojarra~svn/tags/2.1.17@11335) pour le contexte «/application»
    mars 15, 2013 4:07:45 PM com.sun.faces.spi.InjectionProviderFactory createInstance
    INFO: JSF1048 : Présence d’annotations PostConstruct/PreDestroy  Les méthodes de beans gérés marquées avec ces annotations auront des annotations dites traitées.
    mars 15, 2013 4:07:45 PM org.richfaces.javascript.ClientServiceConfigParser parse
    WARNING: Found JavaScript function definition for class javax.validation.constraints.NotNull, but that class is not presented
    mars 15, 2013 4:07:45 PM org.richfaces.javascript.ClientServiceConfigParser parse
    WARNING: Found JavaScript function definition for class org.hibernate.validator.constraints.NotEmpty, but that class is not presented
    mars 15, 2013 4:07:45 PM org.richfaces.javascript.ClientServiceConfigParser parse
    WARNING: Found JavaScript function definition for class javax.validation.constraints.Size, but that class is not presented
    mars 15, 2013 4:07:45 PM org.richfaces.javascript.ClientServiceConfigParser parse
    WARNING: Found JavaScript function definition for class javax.validation.constraints.Pattern, but that class is not presented
    mars 15, 2013 4:07:45 PM org.richfaces.javascript.ClientServiceConfigParser parse
    WARNING: Found JavaScript function definition for class javax.validation.constraints.Min, but that class is not presented
    mars 15, 2013 4:07:45 PM org.richfaces.javascript.ClientServiceConfigParser parse
    WARNING: Found JavaScript function definition for class javax.validation.constraints.Max, but that class is not presented
    mars 15, 2013 4:07:45 PM org.richfaces.javascript.ClientServiceConfigParser parse
    WARNING: Found JavaScript function definition for class javax.validation.constraints.AssertTrue, but that class is not presented
    mars 15, 2013 4:07:45 PM org.richfaces.javascript.ClientServiceConfigParser parse
    WARNING: Found JavaScript function definition for class javax.validation.constraints.AssertFalse, but that class is not presented
    mars 15, 2013 4:07:45 PM org.richfaces.cache.CacheManager getCacheFactory
    INFO: Selected fallback cache factory
    mars 15, 2013 4:07:45 PM org.richfaces.cache.lru.LRUMapCacheFactory createCache
    INFO: Creating LRUMap cache instance using parameters: {}
    mars 15, 2013 4:07:45 PM org.richfaces.cache.lru.LRUMapCacheFactory createCache
    INFO: Creating LRUMap cache instance of 512 items capacity
    mars 15, 2013 4:07:45 PM org.richfaces.application.InitializationListener onStart
    INFO: RichFaces Core Implementation by JBoss by Red Hat, version 4.3.1.Final
    mars 15, 2013 4:07:45 PM org.apache.coyote.AbstractProtocol start
    INFO: Starting ProtocolHandler ["http-bio-8080"]
    mars 15, 2013 4:07:45 PM org.apache.coyote.AbstractProtocol start
    INFO: Starting ProtocolHandler ["ajp-bio-8009"]
    mars 15, 2013 4:07:45 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 11331 ms
    et il affiche ceci [voir fichier joint] Erreu 404 ressource non disponible

    Pourquoi j'ai tarde à repondre :
    j'avai une copie d'une ancienne version que j'ai repris et ca marche avec la solution du
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    <context-param>
             <param-name>javax.faces.DISABLE_FACELET_JSF_VIEWHANDLER</param-name>
             <param-value>true</param-value>
        </context-param>
    .
    le jsf s'affiche normalement.
    Je vai quand meme continuer a chercher pourquoi l'autre ne marche pas pour au cas ou j'ai le meme probleme.
    Encore mille merci fxRobin
    Images attachées Images attachées  

+ Répondre à la discussion
Cette discussion est résolue.
Page 1 sur 2 12 DernièreDernière

Discussions similaires

  1. Réponses: 2
    Dernier message: 28/09/2011, 13h29
  2. <rich:comboBox> n'affiche pas le label ?
    Par dr-Padbol dans le forum JSF
    Réponses: 6
    Dernier message: 16/04/2011, 03h21
  3. Réponses: 11
    Dernier message: 19/01/2011, 11h39
  4. Spring Acgei page de login ne s'affiche pas correctement
    Par Jacobian dans le forum Spring Web
    Réponses: 3
    Dernier message: 28/01/2009, 23h29
  5. Réponses: 2
    Dernier message: 22/10/2007, 12h10

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo