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 :

Problème avec JSF + Spring + Hibernate


Sujet :

JSF Java

  1. #1
    Nouveau membre du Club
    Inscrit en
    Août 2010
    Messages
    50
    Détails du profil
    Informations forums :
    Inscription : Août 2010
    Messages : 50
    Points : 31
    Points
    31
    Par défaut Problème avec JSF + Spring + Hibernate
    je suis entrain de develloper une application web utilisant jsf+spring+hibernate
    tout marche bien mais main.jsf ne s'affiche pas m'indique une erreur 404


    voila mon 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
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
     
    <?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_2_5.xsd" id="WebApp_ID" version="2.5">
      <display-name>jsfmap</display-name>
     
     
     
     <context-param>
      <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
      <param-value>.xhtml</param-value>
     </context-param>
     <context-param>
      <param-name>facelets.REFRESH_PERIOD</param-name>
      <param-value>2</param-value>
     </context-param>
     <context-param>
      <param-name>facelets.DEVELOPMENT</param-name>
      <param-value>true</param-value>
     </context-param>
     <context-param>
      <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
      <param-value>client</param-value>
     </context-param>
     <context-param>
      <param-name>com.sun.faces.validateXml</param-name>
      <param-value>true</param-value>
     </context-param>
     <context-param>
      <param-name>com.sun.faces.verifyObjects</param-name>
      <param-value>true</param-value>
     </context-param>
     
     
    <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
      <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
     
      </servlet>
     
     
      <servlet>
    <servlet-name>SpringContextServlet</servlet-name>
    <servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
     
    <listener>
    <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
    </listener>
     
      <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
      </servlet-mapping>
      <context-param>
    		<param-name>contextConfigLocation</param-name>
    		<param-value>/WEB-INF/application-context.xml</param-value>
    </context-param>
      
    <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>main.jsp</welcome-file>
     </welcome-file-list>
    </web-app>
    faces-config.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
    <?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_1_2.xsd"
        version="1.2">
        <application>
    <el-resolver> org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver>
    </application>
     
     
     
    </faces-config>

    application-context.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
     
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xmlns:aop="http://www.springframework.org/schema/aop"
    	xmlns:context="http://www.springframework.org/schema/context"
    	xmlns:tx="http://www.springframework.org/schema/tx"
    	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
    		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
    		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
    <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
    <property name="url" value="jdbc:mysql://127.0.0.1:3306/geo"></property>
    <property name="username" value="root"></property>
    <property name="password" value=""></property>
    </bean>
    <bean id="sessionFactory"  class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    <property name="dataSource" ref="dataSource"></property>
    <property name="annotatedClasses">
    <list>
    <value>com.google.java.model.Engine</value>
    </list>
    </property>
    <property name="hibernateProperties">
    <props>
    <prop key="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</prop>
    </props>
    </property>
     
    </bean>
    <bean id="transactionManager"  class="org.springframework.orm.hibernate3.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
    <tx:annotation-driven transaction-manager="transactionManager" /> 
    <context:annotation-config/>
    <context:component-scan base-package="com.google.java"/>
    </beans>


    trace sous 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
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    31 juil. 2011 12:56:01 org.apache.catalina.core.AprLifecycleListener init
    INFO: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.6.0_24\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre6/bin/client;C:/Program Files/Java/jre6/bin;C:/Program Files/Java/jre6/lib/i386;C:\STM\ST20R2.2.1\bin;D:\oracle\product\10.2.0\db_1\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Windows Live\Shared;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;;C:\Users\chahrazed\Desktop\eclipse-jee-helios-SR2-win32\eclipse;
    31 juil. 2011 12:56:01 org.apache.coyote.http11.Http11Protocol init
    INFO: Initialisation de Coyote HTTP/1.1 sur http-8080
    31 juil. 2011 12:56:01 org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 492 ms
    31 juil. 2011 12:56:01 org.apache.catalina.core.StandardService start
    INFO: Démarrage du service Catalina
    31 juil. 2011 12:56:01 org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/6.0.14
    31 juil. 2011 12:56:02 com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Initializing Sun's JavaServer Faces implementation (1.2_07-b03-FCS) for context '/jsfmap'
    31 juil. 2011 12:56:02 com.sun.faces.config.ConfigureListener contextInitialized
    ATTENTION: JSF1059: WARNING!  The com.sun.faces.verifyObjects feature is to aid developers not using tools.  It shouldn''t be enabled if using an IDE, or if this application is being deployed for production as it will impact application start times.
    31 juil. 2011 12:56:04 org.apache.catalina.core.ApplicationContext log
    INFO: Initializing Spring root WebApplicationContext
    SLF4J: Class path contains multiple SLF4J bindings.
    SLF4J: Found binding in [jar:file:/C:/Program Files/apache-tomcat-6-wise-tracker/mule-ibeans/lib/slf4j-log4j12-1.5.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
    SLF4J: Found binding in [jar:file:/C:/Users/chahrazed/workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp7/wtpwebapps/jsfmap/WEB-INF/lib/slf4j-simple-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
    SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
    317 [main] INFO org.hibernate.annotations.common.Version - Hibernate Commons Annotations 3.2.0.Final
    326 [main] INFO org.hibernate.cfg.Environment - Hibernate 3.6.0.Final
    328 [main] INFO org.hibernate.cfg.Environment - hibernate.properties not found
    333 [main] INFO org.hibernate.cfg.Environment - Bytecode provider name : javassist
    339 [main] INFO org.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
    533 [main] INFO org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.google.java.model.Engine
    603 [main] INFO org.hibernate.cfg.annotations.EntityBinder - Bind entity com.google.java.model.Engine on table engine
    693 [main] INFO org.hibernate.cfg.Configuration - Hibernate Validator not found: ignoring
    709 [main] INFO org.hibernate.cfg.search.HibernateSearchEventListenerRegister - Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
    716 [main] INFO org.hibernate.connection.ConnectionProviderFactory - Initializing connection provider: org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider
    1064 [main] INFO org.hibernate.cfg.SettingsFactory - Database ->
           name : MySQL
        version : 5.1.56-community
          major : 5
          minor : 1
    1064 [main] INFO org.hibernate.cfg.SettingsFactory - Driver ->
           name : MySQL-AB JDBC Driver
        version : mysql-connector-java-5.1.16 ( Revision: ${bzr.revision-id} )
          major : 5
          minor : 1
    1101 [main] INFO org.hibernate.dialect.Dialect - Using dialect: org.hibernate.dialect.MySQLInnoDBDialect
    1119 [main] INFO org.hibernate.engine.jdbc.JdbcSupportLoader - Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException
    1120 [main] INFO org.hibernate.transaction.TransactionFactoryFactory - Transaction strategy: org.springframework.orm.hibernate3.SpringTransactionFactory
    1121 [main] INFO org.hibernate.transaction.TransactionManagerLookupFactory - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
    1121 [main] INFO org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled
    1121 [main] INFO org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled
    1122 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC batch size: 15
    1122 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled
    1123 [main] INFO org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled
    1123 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled
    1123 [main] INFO org.hibernate.cfg.SettingsFactory - Connection release mode: auto
    1124 [main] INFO org.hibernate.cfg.SettingsFactory - Maximum outer join fetch depth: 2
    1124 [main] INFO org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1
    1124 [main] INFO org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled
    1124 [main] INFO org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled
    1124 [main] INFO org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled
    1124 [main] INFO org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
    1127 [main] INFO org.hibernate.hql.ast.ASTQueryTranslatorFactory - Using ASTQueryTranslatorFactory
    1128 [main] INFO org.hibernate.cfg.SettingsFactory - Query language substitutions: {}
    1128 [main] INFO org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled
    1128 [main] INFO org.hibernate.cfg.SettingsFactory - Second-level cache: enabled
    1128 [main] INFO org.hibernate.cfg.SettingsFactory - Query cache: disabled
    1128 [main] INFO org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
    1130 [main] INFO org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled
    1130 [main] INFO org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled
    1139 [main] INFO org.hibernate.cfg.SettingsFactory - Statistics: disabled
    1139 [main] INFO org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled
    1139 [main] INFO org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo
    1139 [main] INFO org.hibernate.cfg.SettingsFactory - Named query checking : enabled
    1139 [main] INFO org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled
    1171 [main] INFO org.hibernate.impl.SessionFactoryImpl - building session factory
    1631 [main] INFO org.hibernate.impl.SessionFactoryObjectFactory - Not binding factory to JNDI, no JNDI name configured
    31 juil. 2011 12:56:07 org.apache.coyote.http11.Http11Protocol start
    INFO: Démarrage de Coyote HTTP/1.1 sur http-8080
    31 juil. 2011 12:56:07 org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8009
    31 juil. 2011 12:56:07 org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/23  config=null
    31 juil. 2011 12:56:07 org.apache.catalina.startup.Catalina start
    INFO: Server startup in 5877 ms

  2. #2
    Nouveau membre du Club
    Inscrit en
    Août 2010
    Messages
    50
    Détails du profil
    Informations forums :
    Inscription : Août 2010
    Messages : 50
    Points : 31
    Points
    31
    Par défaut
    j'ai remarqué que j'ai pb avec slf4j j'ai la resolu mais j'ai tjrs la méme probléme 404 !!!!!!!!!!

    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
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
     
     
    31 juil. 2011 15:32:59 org.apache.catalina.core.AprLifecycleListener init
    INFO: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.6.0_24\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre6/bin/client;C:/Program Files/Java/jre6/bin;C:/Program Files/Java/jre6/lib/i386;C:\STM\ST20R2.2.1\bin;D:\oracle\product\10.2.0\db_1\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Windows Live\Shared;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;;C:\Users\chahrazed\Desktop\eclipse-jee-helios-SR2-win32\eclipse;
    31 juil. 2011 15:32:59 org.apache.coyote.http11.Http11Protocol init
    INFO: Initialisation de Coyote HTTP/1.1 sur http-8080
    31 juil. 2011 15:32:59 org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 406 ms
    31 juil. 2011 15:32:59 org.apache.catalina.core.StandardService start
    INFO: Démarrage du service Catalina
    31 juil. 2011 15:32:59 org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/6.0.14
    31 juil. 2011 15:32:59 com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Initializing Sun's JavaServer Faces implementation (1.2_07-b03-FCS) for context '/jsfmap'
    31 juil. 2011 15:33:01 org.apache.catalina.core.ApplicationContext log
    INFO: Initializing Spring root WebApplicationContext
    205 [main] INFO org.hibernate.annotations.common.Version - Hibernate Commons Annotations 3.2.0.Final
    214 [main] INFO org.hibernate.cfg.Environment - Hibernate 3.6.0.Final
    216 [main] INFO org.hibernate.cfg.Environment - hibernate.properties not found
    220 [main] INFO org.hibernate.cfg.Environment - Bytecode provider name : javassist
    225 [main] INFO org.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
    408 [main] INFO org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.google.java.model.Engine
    473 [main] INFO org.hibernate.cfg.annotations.EntityBinder - Bind entity com.google.java.model.Engine on table engine
    558 [main] INFO org.hibernate.cfg.Configuration - Hibernate Validator not found: ignoring
    570 [main] INFO org.hibernate.cfg.search.HibernateSearchEventListenerRegister - Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
    577 [main] INFO org.hibernate.connection.ConnectionProviderFactory - Initializing connection provider: org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider
    996 [main] INFO org.hibernate.cfg.SettingsFactory - Database ->
           name : MySQL
        version : 5.1.56-community
          major : 5
          minor : 1
    996 [main] INFO org.hibernate.cfg.SettingsFactory - Driver ->
           name : MySQL-AB JDBC Driver
        version : mysql-connector-java-5.1.16 ( Revision: ${bzr.revision-id} )
          major : 5
          minor : 1
    1032 [main] INFO org.hibernate.dialect.Dialect - Using dialect: org.hibernate.dialect.MySQLInnoDBDialect
    1050 [main] INFO org.hibernate.engine.jdbc.JdbcSupportLoader - Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException
    1051 [main] INFO org.hibernate.transaction.TransactionFactoryFactory - Transaction strategy: org.springframework.orm.hibernate3.SpringTransactionFactory
    1052 [main] INFO org.hibernate.transaction.TransactionManagerLookupFactory - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
    1052 [main] INFO org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled
    1052 [main] INFO org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled
    1052 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC batch size: 15
    1052 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled
    1053 [main] INFO org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled
    1053 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled
    1053 [main] INFO org.hibernate.cfg.SettingsFactory - Connection release mode: auto
    1054 [main] INFO org.hibernate.cfg.SettingsFactory - Maximum outer join fetch depth: 2
    1054 [main] INFO org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1
    1054 [main] INFO org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled
    1054 [main] INFO org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled
    1054 [main] INFO org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled
    1054 [main] INFO org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
    1057 [main] INFO org.hibernate.hql.ast.ASTQueryTranslatorFactory - Using ASTQueryTranslatorFactory
    1057 [main] INFO org.hibernate.cfg.SettingsFactory - Query language substitutions: {}
    1057 [main] INFO org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled
    1057 [main] INFO org.hibernate.cfg.SettingsFactory - Second-level cache: enabled
    1057 [main] INFO org.hibernate.cfg.SettingsFactory - Query cache: disabled
    1057 [main] INFO org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
    1059 [main] INFO org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled
    1059 [main] INFO org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled
    1067 [main] INFO org.hibernate.cfg.SettingsFactory - Statistics: disabled
    1067 [main] INFO org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled
    1067 [main] INFO org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo
    1067 [main] INFO org.hibernate.cfg.SettingsFactory - Named query checking : enabled
    1067 [main] INFO org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled
    1092 [main] INFO org.hibernate.impl.SessionFactoryImpl - building session factory
    1426 [main] INFO org.hibernate.impl.SessionFactoryObjectFactory - Not binding factory to JNDI, no JNDI name configured
    31 juil. 2011 15:33:03 org.apache.coyote.http11.Http11Protocol start
    INFO: Démarrage de Coyote HTTP/1.1 sur http-8080
    31 juil. 2011 15:33:04 org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8009
    31 juil. 2011 15:33:04 org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/22  config=null
    31 juil. 2011 15:33:04 org.apache.catalina.startup.Catalina start
    INFO: Server startup in 4925 ms

Discussions similaires

  1. Probléme avec JSF+Spring
    Par achbend dans le forum JSF
    Réponses: 4
    Dernier message: 03/01/2014, 12h04
  2. [JSF / Spring / Hibernate] Problème ManagedBean
    Par Maram mar dans le forum JSF
    Réponses: 2
    Dernier message: 19/09/2011, 15h04
  3. [Framework] Spring avec JSF et Hibernate
    Par wajdopovitch dans le forum Spring
    Réponses: 0
    Dernier message: 11/12/2009, 12h49
  4. Réponses: 7
    Dernier message: 24/10/2007, 18h44

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