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

Spring Java Discussion :

No unique bean of type [javax.persistence.EntityManagerFactory] is defined: expected single bean but found 0


Sujet :

Spring Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Profil pro
    Inscrit en
    Février 2008
    Messages
    12
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2008
    Messages : 12
    Par défaut No unique bean of type [javax.persistence.EntityManagerFactory] is defined: expected single bean but found 0
    Bonjour, j'essaie d'utiliser spring et stripes
    persistence.xml
    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"?>
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
      <persistence-unit name="FacturationEjbStripesPU" transaction-type="JTA">
        <jta-data-source>java:/facturationDevDataSource</jta-data-source>
              <properties>
          <!--property name="hibernate.hbm2ddl.auto">create</property-->
                <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>
          <!--property name="hibernate.show_sql" value="true"/-->
            </properties>
      </persistence-unit>
    </persistence>
    applicationcontext.xml:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    <?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:context="http://www.springframework.org/schema/context"
           xsi:schemaLocation="
               http://www.springframework.org/schema/beans
               http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
               http://www.springframework.org/schema/context
               http://www.springframework.org/schema/context/spring-context-2.5.xsd">
     
        <context:component-scan base-package="fr.mgi.facturation.service" />
        <context:component-scan base-package="fr.mgi.facturation.dao" />     <!-- [2] -->
    </beans>
    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
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 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-app_2_5.xsd">
        <display-name>StripesSpringJPA</display-name>
        <listener>
            <!-- [1] -->
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
        <context-param>
            <!-- [2] -->
            <param-name>contextConfigLocation</param-name>
            <param-value>WEB-INF/applicationContext.xml</param-value>
        </context-param>
        <filter>
            <display-name>Stripes Filter</display-name>
            <filter-name>StripesFilter</filter-name>
            <filter-class>net.sourceforge.stripes.controller.StripesFilter</filter-class>
            <init-param>
                <!-- [3] dossier des ACTION BEAN-->
                <param-name>ActionResolver.Packages</param-name>
                <param-value>net.sourceforge.stripes.examples</param-value>
            </init-param>
            <init-param>
                <!-- [4] -->
                <param-name>Interceptor.Classes</param-name>
                <param-value>
                net.sourceforge.stripes.integration.spring.SpringInterceptor
          </param-value>
            </init-param>
        </filter>
        <filter-mapping>
            <filter-name>StripesFilter</filter-name>
            <url-pattern>*.jsp</url-pattern>
            <dispatcher>REQUEST</dispatcher>
        </filter-mapping>
        <filter-mapping>
            <filter-name>StripesFilter</filter-name>
            <servlet-name>StripesDispatcher</servlet-name>
            <dispatcher>REQUEST</dispatcher>
        </filter-mapping>
        <servlet>
            <servlet-name>StripesDispatcher</servlet-name>
            <servlet-class>net.sourceforge.stripes.controller.DispatcherServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>StripesDispatcher</servlet-name>
            <url-pattern>*.action</url-pattern>
        </servlet-mapping>
    </web-app>
    suiviService.java:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    package fr.mgi.facturation.service;
     
    import fr.mgi.facturation.entity.Suivi;
     
    public interface SuiviService {
        Suivi get(int suiviId);
        Suivi save(Suivi newSuivi);
    }
    suiviServiceImpl.java:
    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
    package fr.mgi.facturation.service.impl;
     
     
    import fr.mgi.facturation.dao.SuiviDao;
    import fr.mgi.facturation.entity.Suivi;
    import fr.mgi.facturation.service.SuiviService;
    import org.springframework.beans.factory.annotation.Autowired;
     
    import org.springframework.stereotype.Service;
     
    @Service
    public class SuiviServiceImpl implements SuiviService {
     
     
      /* @Autowired
        SuiviDao suiviDao;*/
     
        @Override
        public Suivi get(int suiviId) {
            System.out.println("service impl");
            //return suiviDao.get(suiviId);
            return null;
        }
     
        @Override
        public Suivi save(Suivi newSuivi) {
            //return suiviDao.save(newSuivi);
            return null;
        }
    }
    suiviDao.java:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    package fr.mgi.facturation.dao;
     
    import fr.mgi.facturation.entity.Suivi;
     
    public interface SuiviDao extends GenericDao<Suivi, Integer> {
        Suivi get(int suiviId);
    }
    suiviDaoImpl.java:
    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
    package fr.mgi.facturation.dao.impl;
     
     
    import fr.mgi.facturation.dao.SuiviDao;
    import fr.mgi.facturation.entity.Suivi;
     
    import javax.persistence.EntityManager;
    import javax.persistence.PersistenceContext;
    import org.springframework.stereotype.Repository;
     
     
     
    @Repository
    public class SuiviDaoImpl extends GenericDaoImpl<Suivi, Integer> implements SuiviDao {
     
        //on manipule des EJB entity, besoin du persistence context.
        @PersistenceContext
        private EntityManager entityManager;
     
        public SuiviDaoImpl() {
            super(Suivi.class);
        }
     
        @Override
        @SuppressWarnings("unchecked")
        public Suivi get(int suiviId) {
                StringBuilder query = new StringBuilder();
                query.append("Select o from ").
                        append(Suivi.class.getName()).
                        append(" As o Where upper(o.id) = upper('").
                        append(suiviId).
                        append("')");
     
                System.out.println("Suivi get(String suiviId) "+query);
     
                Suivi booking;
                try {
                    booking = (Suivi) entityManager.createQuery(query.toString()).getSingleResult();
                } catch (Exception e) {
                    booking = null;
                }
                return booking;
        }
    }
    MERCI de votre aide

  2. #2
    Membre éprouvé Avatar de chewing-gum
    Homme Profil pro
    Développeur Java
    Inscrit en
    Novembre 2009
    Messages
    105
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur Java

    Informations forums :
    Inscription : Novembre 2009
    Messages : 105
    Par défaut
    Bonjour,

    Tu tentes d'injecter un objet de type "EntityManager" dans la classe "SuiviDaoImpl" mais cet objet n'existe pas dans ton applicationContext.xml.
    Pour créer un EntityManager, tu as besoin d'une factory nommée "EntityManagerFactory".

    La solution : définir un bean "entityManagerFactory" dans ton applicationContext.
    Si tu veux un exemple, tu peux en trouver dans la documentation de spring.

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

    Sur le lien ci-dessus, tu as des exemples de : comment intégrer cette couche de persistence avec JPA ou encore Hibernate.

  3. #3
    Membre averti
    Profil pro
    Inscrit en
    Février 2008
    Messages
    12
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2008
    Messages : 12
    Par défaut
    merci de ton aide ,
    en fait pour être précis, j'avais essayé de palier ce pb en ajoutant:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
       <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean">
      <property name="persistenceUnitName" value="FacturationEjbStripesPU"/>
    </bean>
    dans mon applicationContext.xml

    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'suiviServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'suiviDaoImpl': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: [PersistenceUnit: FacturationEjbStripesPU] Unable to build EntityManagerFactory

  4. #4
    Membre éprouvé Avatar de chewing-gum
    Homme Profil pro
    Développeur Java
    Inscrit en
    Novembre 2009
    Messages
    105
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur Java

    Informations forums :
    Inscription : Novembre 2009
    Messages : 105
    Par défaut
    Poste ici ton code Java avec les EntityManager que tu as essayé d'ajouter + ta configuration spring + persistance et la stackTrace (même si c'est la même).
    Sans le code, on pourra pas voir tes erreurs

  5. #5
    Membre averti
    Profil pro
    Inscrit en
    Février 2008
    Messages
    12
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2008
    Messages : 12
    Par défaut
    Jboss 5, springs 3.0.2 et stripes 1.5.6

    j'ai posté mes sources:
    http://master.projet.free.fr/java/

    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
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
     
    E:\Dev_Mcustoms\netbeans\NetBeans 6.9.1>e:\serveur\jboss_yb\bin\run-b.bat
    Calling e:\serveur\jboss_yb\bin\run.conf.bat
    ===============================================================================
     
      JBoss Bootstrap Environment
     
      JBOSS_HOME: E:\serveur\jboss_yb
     
      JAVA: C:\Program Files\Java\jdk1.6.0_18\bin\java
     
      JAVA_OPTS: -Dprogram.name=run-b.bat -Xms1024m -Xmx1024m -XX:MaxPermSize=512m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dorg.jboss.resolver.warning=true -server
     
      CLASSPATH: E:\serveur\jboss_yb\bin\run.jar
     
    ===============================================================================
     
    11:22:21,359 INFO  [ServerImpl] Starting JBoss (Microcontainer)...
    11:22:21,359 INFO  [ServerImpl] Release ID: JBoss [The Oracle] 5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221634)
    11:22:21,360 INFO  [ServerImpl] Bootstrap URL: null
    11:22:21,360 INFO  [ServerImpl] Home Dir: E:\serveur\jboss_yb
    11:22:21,360 INFO  [ServerImpl] Home URL: file:/E:/serveur/jboss_yb/
    11:22:21,360 INFO  [ServerImpl] Library URL: file:/E:/serveur/jboss_yb/lib/
    11:22:21,361 INFO  [ServerImpl] Patch URL: null
    11:22:21,361 INFO  [ServerImpl] Common Base URL: file:/E:/serveur/jboss_yb/common/
    11:22:21,667 INFO  [ServerImpl] Common Library URL: file:/E:/serveur/jboss_yb/common/lib/
    11:22:21,667 INFO  [ServerImpl] Server Name: default
    11:22:21,667 INFO  [ServerImpl] Server Base Dir: E:\serveur\jboss_yb\server
    11:22:21,667 INFO  [ServerImpl] Server Base URL: file:/E:/serveur/jboss_yb/server/
    11:22:21,667 INFO  [ServerImpl] Server Config URL: file:/E:/serveur/jboss_yb/server/default/conf/
    11:22:21,668 INFO  [ServerImpl] Server Home Dir: E:\serveur\jboss_yb\server\default
    11:22:21,668 INFO  [ServerImpl] Server Home URL: file:/E:/serveur/jboss_yb/server/default/
    11:22:21,668 INFO  [ServerImpl] Server Data Dir: E:\serveur\jboss_yb\server\default\data
    11:22:21,668 INFO  [ServerImpl] Server Library URL: file:/E:/serveur/jboss_yb/server/default/lib/
    11:22:21,668 INFO  [ServerImpl] Server Log Dir: E:\serveur\jboss_yb\server\default\log
    11:22:22,919 INFO  [ServerImpl] Server Native Dir: E:\serveur\jboss_yb\server\default\tmp\native
    11:22:22,919 INFO  [ServerImpl] Server Temp Dir: E:\serveur\jboss_yb\server\default\tmp
    11:22:22,919 INFO  [ServerImpl] Server Temp Deploy Dir: E:\serveur\jboss_yb\server\default\tmp\deploy
    11:22:23,389 INFO  [ServerImpl] Starting Microcontainer, bootstrapURL=file:/E:/serveur/jboss_yb/server/default/conf/bootstrap.xml
    11:22:23,782 INFO  [VFSCacheFactory] Initializing VFSCache [org.jboss.virtual.plugins.cache.CombinedVFSCache]
    11:22:23,784 INFO  [VFSCacheFactory] Using VFSCache [CombinedVFSCache[real-cache: null]]
    11:22:23,966 INFO  [CopyMechanism] VFS temp dir: E:\serveur\jboss_yb\server\default\tmp
    11:22:23,967 INFO  [ZipEntryContext] VFS force nested jars copy-mode is enabled.
    11:22:24,706 INFO  [ServerInfo] Java version: 1.6.0_18,Sun Microsystems Inc.
    11:22:24,706 INFO  [ServerInfo] Java Runtime: Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
    11:22:24,706 INFO  [ServerInfo] Java VM: Java HotSpot(TM) 64-Bit Server VM 16.0-b13,Sun Microsystems Inc.
    11:22:24,706 INFO  [ServerInfo] OS-System: Windows 7 6.1,amd64
    11:22:24,707 INFO  [ServerInfo] VM arguments: -Dprogram.name=run-b.bat -Xms1024m -Xmx1024m -XX:MaxPermSize=512m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dorg.jboss.resolver.warning=true -Djava.endorsed.dirs=E:\serveur\jboss_yb\lib\endorsed 
    11:22:24,951 INFO  [JMXKernel] Legacy JMX core initialized
    11:22:26,323 INFO  [ProfileServiceBootstrap] Loading profile: ProfileKey@74bffc3a[domain=default, server=default, name=default]
     
    11:22:27,218 INFO  [WebService] Using RMI server codebase: http://127.0.0.1:8083/
    11:22:30,632 INFO  [NativeServerConfig] JBoss Web Services - Stack Native Core
    11:22:30,632 INFO  [NativeServerConfig] 3.1.2.GA
    11:22:31,012 INFO  [AttributeCallbackItem] Owner callback not implemented.
    11:22:31,705 INFO  [LogNotificationListener] Adding notification listener for logging mbean "jboss.system:service=Logging,type=Log4jService" to server org.jboss.mx.server.MBeanServerImpl@5570984c[ defaultDomain='jboss' ]
    11:22:38,958 WARN  [MappedReferenceMetaDataResolverDeployer] Unresolved references exist in JBossWebMetaData:[FacturationWebStripes.war#web-app:AnnotatedEJBReferenceMetaData{name=net.sourceforge.stripes.examples.quickstart.AutocompleteActionBean/suiviService,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface fr.mgi.facturation.service.SuiviService}, FacturationWebStripes.war#web-app:AnnotatedEJBReferenceMetaData{name=net.sourceforge.stripes.examples.quickstart.CalculatorActionBean/suiviService,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface fr.mgi.facturation.service.SuiviService}]
    11:22:39,455 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@1117715699{vfsfile:/E:/serveur/jboss_yb/server/default/deploy/profileservice-secured.jar/}
    11:22:39,456 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@1117715699{vfsfile:/E:/serveur/jboss_yb/server/default/deploy/profileservice-secured.jar/}
    11:22:39,456 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@1117715699{vfsfile:/E:/serveur/jboss_yb/server/default/deploy/profileservice-secured.jar/}
    11:22:39,923 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@1117715699{vfsfile:/E:/serveur/jboss_yb/server/default/deploy/profileservice-secured.jar/}
    11:22:39,926 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@1924078838{vfszip:/E:/serveur/jboss_yb/server/default/deploy/FacturationEarSpringStripes.ear/FacturationEjbStripes.jar/}
    11:22:39,926 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@1924078838{vfszip:/E:/serveur/jboss_yb/server/default/deploy/FacturationEarSpringStripes.ear/FacturationEjbStripes.jar/}
    11:22:39,927 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@1924078838{vfszip:/E:/serveur/jboss_yb/server/default/deploy/FacturationEarSpringStripes.ear/FacturationEjbStripes.jar/}
    11:22:40,424 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@99272963{vfszip:/E:/serveur/jboss_yb/server/default/deploy/FacturationEarStripes.ear/FacturationEjb.jar/}
    11:22:40,425 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@99272963{vfszip:/E:/serveur/jboss_yb/server/default/deploy/FacturationEarStripes.ear/FacturationEjb.jar/}
    11:22:40,425 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@99272963{vfszip:/E:/serveur/jboss_yb/server/default/deploy/FacturationEarStripes.ear/FacturationEjb.jar/}
    11:22:40,923 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@99272963{vfszip:/E:/serveur/jboss_yb/server/default/deploy/FacturationEarStripes.ear/FacturationEjb.jar/}
    11:22:42,967 INFO  [JMXConnectorServerService] JMX Connector server: service:jmx:rmi://127.0.0.1/jndi/rmi://127.0.0.1:1090/jmxconnector
    11:22:43,060 INFO  [MailService] Mail Service bound to java:/Mail
    11:22:44,858 WARN  [JBossASSecurityMetadataStore] WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.
    11:22:44,869 WARN  [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
    11:22:44,917 WARN  [AnnotationCreator] No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
    11:22:44,955 INFO  [TransactionManagerService] JBossTS Transaction Service (JTA version - tag:JBOSSTS_4_6_1_GA) - JBoss Inc.
    11:22:44,956 INFO  [TransactionManagerService] Setting up property manager MBean and JMX layer
    11:22:45,132 INFO  [TransactionManagerService] Initializing recovery manager
    11:22:45,217 INFO  [TransactionManagerService] Recovery manager configured
    11:22:45,218 INFO  [TransactionManagerService] Binding TransactionManager JNDI Reference
    11:22:45,236 INFO  [TransactionManagerService] Starting transaction recovery manager
    11:22:45,694 INFO  [AprLifecycleListener] 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_18\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Program Files (x86)\CollabNet Subversion Client;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared\;C:\apache-ant-1.7.1\bin;C:\Jikes\bin
    11:22:45,971 INFO  [Http11Protocol] Initialisation de Coyote HTTP/1.1 sur http-127.0.0.1-8080
    11:22:45,972 INFO  [AjpProtocol] Initializing Coyote AJP/1.3 on ajp-127.0.0.1-8009
    11:22:45,985 INFO  [StandardService] D�marrage du service jboss.web
    11:22:45,986 INFO  [StandardEngine] Starting Servlet Engine: JBoss Web/2.1.3.GA
    11:22:46,021 INFO  [Catalina] Server startup in 49 ms
    11:22:46,037 INFO  [TomcatDeployment] deploy, ctxPath=/jbossws
    11:22:46,329 INFO  [TomcatDeployment] deploy, ctxPath=/invoker
    11:22:46,455 INFO  [TomcatDeployment] deploy, ctxPath=/web-console
    11:22:46,673 INFO  [RARDeployment] Required license terms exist, view vfszip:/E:/serveur/jboss_yb/server/default/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
    11:22:46,687 INFO  [RARDeployment] Required license terms exist, view vfszip:/E:/serveur/jboss_yb/server/default/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
    11:22:46,712 INFO  [RARDeployment] Required license terms exist, view vfszip:/E:/serveur/jboss_yb/server/default/deploy/jms-ra.rar/META-INF/ra.xml
    11:22:46,938 INFO  [RARDeployment] Required license terms exist, view vfszip:/E:/serveur/jboss_yb/server/default/deploy/mail-ra.rar/META-INF/ra.xml
    11:22:46,954 INFO  [RARDeployment] Required license terms exist, view vfszip:/E:/serveur/jboss_yb/server/default/deploy/quartz-ra.rar/META-INF/ra.xml
    11:22:47,001 INFO  [SimpleThreadPool] Job execution threads will use class loader of thread: main
    11:22:47,017 INFO  [QuartzScheduler] Quartz Scheduler v.1.5.2 created.
    11:22:47,019 INFO  [RAMJobStore] RAMJobStore initialized.
    11:22:47,424 INFO  [StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
    11:22:47,424 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.5.2
    11:22:47,425 INFO  [QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
    11:22:47,705 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
    11:22:47,947 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=facturationDevDataSource' to JNDI name 'java:facturationDevDataSource'
    11:22:47,961 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=testDataSource' to JNDI name 'java:testDataSource'
    11:22:47,973 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=devDataSource' to JNDI name 'java:devDataSource'
    11:22:48,443 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=preProdDataSource' to JNDI name 'java:preProdDataSource'
    11:22:49,627 INFO  [ServerPeer] JBoss Messaging 1.4.3.GA server [0] started
    11:22:49,712 INFO  [QueueService] Queue[/queue/outputQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
    11:22:49,716 INFO  [ConnectionFactoryJNDIMapper] supportsFailover attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support failover
    11:22:49,716 INFO  [ConnectionFactoryJNDIMapper] supportsLoadBalancing attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support load balancing
    11:22:49,968 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
     
    11:22:49,969 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@45a07755 started
    11:22:49,969 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
    11:22:49,969 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@13143ce started
    11:22:50,001 INFO  [QueueService] Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
    11:22:50,426 INFO  [ConnectionFactory] Connector bisocket://127.0.0.1:4457 has leasing enabled, lease period 10000 milliseconds
     
    11:22:50,426 INFO  [ConnectionFactory] org.jboss.jms.server.connectionfactory.ConnectionFactory@53f5f128 started
    11:23:13,251 INFO  [QueueService] Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000
    11:23:13,277 INFO  [QueueService] Queue[/queue/inputQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
    11:23:13,290 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=prodDataSource' to JNDI name 'java:prodDataSource'
    11:23:13,344 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
    11:23:13,955 INFO  [JBossASKernel] Created KernelDeployment for: profileservice-secured.jar
    11:23:13,959 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3
    11:23:13,959 INFO  [JBossASKernel]   with dependencies:
    11:23:13,959 INFO  [JBossASKernel]   and demands:
    11:23:13,959 INFO  [JBossASKernel]         jndi:SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView
    11:23:13,959 INFO  [JBossASKernel]         jboss.ejb:service=EJBTimerService
    11:23:14,425 INFO  [JBossASKernel]   and supplies:
    11:23:14,425 INFO  [JBossASKernel]         Class:org.jboss.profileservice.spi.ProfileService
    11:23:14,425 INFO  [JBossASKernel]         jndi:SecureProfileService/remote
    11:23:14,425 INFO  [JBossASKernel]         jndi:SecureProfileService/remote-org.jboss.profileservice.spi.ProfileService
    11:23:14,425 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3) to KernelDeployment of: profileservice-secured.jar
    11:23:14,426 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3
    11:23:14,925 INFO  [JBossASKernel]   with dependencies:
    11:23:14,925 INFO  [JBossASKernel]   and demands:
    11:23:14,925 INFO  [JBossASKernel]         jboss.ejb:service=EJBTimerService
    11:23:14,925 INFO  [JBossASKernel]   and supplies:
    11:23:14,925 INFO  [JBossASKernel]         jndi:SecureDeploymentManager/remote-org.jboss.deployers.spi.management.deploy.DeploymentManager
    11:23:14,925 INFO  [JBossASKernel]         Class:org.jboss.deployers.spi.management.deploy.DeploymentManager
    11:23:14,925 INFO  [JBossASKernel]         jndi:SecureDeploymentManager/remote
    11:23:14,925 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3) to KernelDeployment of: profileservice-secured.jar
    11:23:14,926 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3
    11:23:14,926 INFO  [JBossASKernel]   with dependencies:
    11:23:14,926 INFO  [JBossASKernel]   and demands:
    11:23:14,926 INFO  [JBossASKernel]         jboss.ejb:service=EJBTimerService
    11:23:14,926 INFO  [JBossASKernel]   and supplies:
    11:23:14,926 INFO  [JBossASKernel]         jndi:SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView
    11:23:14,926 INFO  [JBossASKernel]         Class:org.jboss.deployers.spi.management.ManagementView
    11:23:15,425 INFO  [JBossASKernel]         jndi:SecureManagementView/remote
    11:23:15,425 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3) to KernelDeployment of: profileservice-secured.jar
    11:23:15,433 INFO  [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@41579722{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
    11:23:15,433 INFO  [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@5ab74a6d{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
    11:23:15,925 INFO  [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@768021{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
    11:23:16,010 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3
    11:23:16,016 INFO  [EJBContainer] STARTED EJB: org.jboss.profileservice.ejb.SecureDeploymentManager ejbName: SecureDeploymentManager
    11:23:16,461 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
     
            SecureDeploymentManager/remote - EJB3.x Default Remote Business Interface
            SecureDeploymentManager/remote-org.jboss.deployers.spi.management.deploy.DeploymentManager - EJB3.x Remote Business Interface
     
    11:23:16,503 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3
    11:23:16,504 INFO  [EJBContainer] STARTED EJB: org.jboss.profileservice.ejb.SecureManagementView ejbName: SecureManagementView
    11:23:16,937 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
     
            SecureManagementView/remote - EJB3.x Default Remote Business Interface
            SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView - EJB3.x Remote Business Interface
     
    11:23:16,970 INFO  [SessionSpecContainer] Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3
    11:23:16,972 INFO  [EJBContainer] STARTED EJB: org.jboss.profileservice.ejb.SecureProfileServiceBean ejbName: SecureProfileService
    11:23:17,434 INFO  [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
     
            SecureProfileService/remote - EJB3.x Default Remote Business Interface
            SecureProfileService/remote-org.jboss.profileservice.spi.ProfileService - EJB3.x Remote Business Interface
     
    11:23:17,515 INFO  [TomcatDeployment] deploy, ctxPath=/admin-console
    11:23:17,568 INFO  [config] Initializing Mojarra (1.2_12-b01-FCS) for context '/admin-console'
    11:23:18,817 INFO  [TomcatDeployment] deploy, ctxPath=/
    11:23:18,863 INFO  [TomcatDeployment] deploy, ctxPath=/jmx-console
    11:23:19,396 INFO  [PersistenceUnitDeployment] Starting persistence unit persistence.unit:unitName=FacturationEarSpringStripes.ear/FacturationEjbStripes.jar#FacturationEjbStripesPU
    11:23:19,449 INFO  [Version] Hibernate Annotations 3.4.0.GA
    11:23:19,461 INFO  [Environment] Hibernate 3.3.1.GA
    11:23:19,465 INFO  [Environment] hibernate.properties not found
    11:23:19,468 INFO  [Environment] Bytecode provider name : javassist
    11:23:19,473 INFO  [Environment] using JDK 1.4 java.sql.Timestamp handling
    11:23:19,549 INFO  [Version] Hibernate Commons Annotations 3.1.0.GA
    11:23:19,554 INFO  [Version] Hibernate EntityManager 3.4.0.GA
    11:23:19,578 INFO  [Ejb3Configuration] Processing PersistenceUnitInfo [
            name: FacturationEjbStripesPU
            ...]
    11:23:19,945 WARN  [Ejb3Configuration] Persistence provider caller does not implement the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoader() is null.
    11:23:20,000 INFO  [AnnotationBinder] Binding entity from annotated class: fr.mgi.facturation.entity.Plateforme
    11:23:20,011 INFO  [QueryBinder] Binding Named query: Plateforme.findAll => SELECT p FROM Plateforme p
    11:23:20,011 INFO  [QueryBinder] Binding Named query: Plateforme.findById => SELECT p FROM Plateforme p WHERE p.id = :id
    11:23:20,011 INFO  [QueryBinder] Binding Named query: Plateforme.findByNom => SELECT p FROM Plateforme p WHERE p.nom = :nom
    11:23:20,463 INFO  [EntityBinder] Bind entity fr.mgi.facturation.entity.Plateforme on table PLATEFORME
    11:23:20,533 INFO  [AnnotationBinder] Binding entity from annotated class: fr.mgi.facturation.entity.Suivi
    11:23:20,533 INFO  [QueryBinder] Binding Named query: Suivi.findAll => SELECT s FROM Suivi s
    11:23:20,533 INFO  [QueryBinder] Binding Named query: Suivi.findById => SELECT s FROM Suivi s WHERE s.id = :id
    11:23:20,533 INFO  [QueryBinder] Binding Named query: Suivi.findByHorodatage => SELECT s FROM Suivi s WHERE s.horodatage = :horodatage
    11:23:20,926 INFO  [QueryBinder] Binding Named query: Suivi.findByPoids => SELECT s FROM Suivi s WHERE s.poids = :poids
    11:23:20,926 INFO  [EntityBinder] Bind entity fr.mgi.facturation.entity.Suivi on table SUIVI
    11:23:20,937 INFO  [AnnotationBinder] Binding entity from annotated class: fr.mgi.facturation.entity.TypeMsg
    11:23:20,937 INFO  [QueryBinder] Binding Named query: TypeMsg.findAll => SELECT t FROM TypeMsg t
    11:23:20,937 INFO  [QueryBinder] Binding Named query: TypeMsg.findById => SELECT t FROM TypeMsg t WHERE t.id = :id
    11:23:20,937 INFO  [QueryBinder] Binding Named query: TypeMsg.findByCode => SELECT t FROM TypeMsg t WHERE t.code = :code
    11:23:21,426 INFO  [EntityBinder] Bind entity fr.mgi.facturation.entity.TypeMsg on table TYPE_MSG
    11:23:21,428 INFO  [AnnotationBinder] Binding entity from annotated class: fr.mgi.facturation.entity.Partenaire
    11:23:21,428 INFO  [QueryBinder] Binding Named query: Partenaire.findAll => SELECT p FROM Partenaire p
    11:23:21,428 INFO  [QueryBinder] Binding Named query: Partenaire.findById => SELECT p FROM Partenaire p WHERE p.id = :id
    11:23:21,428 INFO  [QueryBinder] Binding Named query: Partenaire.findByNom => SELECT p FROM Partenaire p WHERE p.nom = :nom
    11:23:21,926 INFO  [EntityBinder] Bind entity fr.mgi.facturation.entity.Partenaire on table PARTENAIRE
    11:23:21,981 INFO  [CollectionBinder] Mapping collection: fr.mgi.facturation.entity.Plateforme.suiviList -> SUIVI
    11:23:21,983 INFO  [CollectionBinder] Mapping collection: fr.mgi.facturation.entity.Plateforme.suiviList1 -> SUIVI
    11:23:21,983 INFO  [CollectionBinder] Mapping collection: fr.mgi.facturation.entity.TypeMsg.suiviList -> SUIVI
    11:23:21,983 INFO  [CollectionBinder] Mapping collection: fr.mgi.facturation.entity.Partenaire.suiviList -> SUIVI
    11:23:22,426 INFO  [CollectionBinder] Mapping collection: fr.mgi.facturation.entity.Partenaire.suiviList1 -> SUIVI
    11:23:22,435 INFO  [Version] Hibernate Validator 3.1.0.GA
    11:23:22,483 INFO  [HibernateSearchEventListenerRegister] Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
    11:23:22,492 INFO  [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
    11:23:22,496 INFO  [InjectedDataSourceConnectionProvider] Using provided datasource
    11:23:22,976 INFO  [SettingsFactory] RDBMS: Oracle, version: Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    11:23:22,976 INFO  [SettingsFactory] JDBC driver: Oracle JDBC driver, version: 10.2.0.4.0
    11:23:23,000 INFO  [Dialect] Using dialect: org.hibernate.dialect.Oracle10gDialect
    11:23:23,007 INFO  [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
    11:23:23,009 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
    11:23:23,429 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
    11:23:23,429 INFO  [SettingsFactory] Automatic flush during beforeCompletion(): disabled
    11:23:23,429 INFO  [SettingsFactory] Automatic session close at end of transaction: disabled
    11:23:23,429 INFO  [SettingsFactory] JDBC batch size: 15
    11:23:23,429 INFO  [SettingsFactory] JDBC batch updates for versioned data: disabled
    11:23:23,430 INFO  [SettingsFactory] Scrollable result sets: enabled
    11:23:23,430 INFO  [SettingsFactory] JDBC3 getGeneratedKeys(): disabled
    11:23:23,926 INFO  [SettingsFactory] Connection release mode: auto
    11:23:23,928 INFO  [SettingsFactory] Default batch fetch size: 1
    11:23:23,928 INFO  [SettingsFactory] Generate SQL with comments: disabled
    11:23:23,928 INFO  [SettingsFactory] Order SQL updates by primary key: disabled
    11:23:23,928 INFO  [SettingsFactory] Order SQL inserts for batching: disabled
    11:23:23,928 INFO  [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
    11:23:23,932 INFO  [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
    11:23:23,932 INFO  [SettingsFactory] Query language substitutions: {}
    11:23:24,426 INFO  [SettingsFactory] JPA-QL strict compliance: enabled
    11:23:24,426 INFO  [SettingsFactory] Second-level cache: enabled
    11:23:24,426 INFO  [SettingsFactory] Query cache: disabled
    11:23:24,433 INFO  [SettingsFactory] Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge
    11:23:24,434 INFO  [RegionFactoryCacheProviderBridge] Cache provider: org.hibernate.cache.HashtableCacheProvider
    11:23:24,435 INFO  [SettingsFactory] Optimize cache for minimal puts: disabled
    11:23:24,435 INFO  [SettingsFactory] Cache region prefix: persistence.unit:unitName=FacturationEarSpringStripes.ear/FacturationEjbStripes.jar#FacturationEjbStripesPU
    11:23:24,435 INFO  [SettingsFactory] Structured second-level cache entries: disabled
    11:23:24,933 INFO  [SettingsFactory] Statistics: disabled
    11:23:24,933 INFO  [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
    11:23:24,934 INFO  [SettingsFactory] Default entity-mode: pojo
    11:23:24,934 INFO  [SettingsFactory] Named query checking : enabled
    11:23:24,976 INFO  [SessionFactoryImpl] building session factory
    11:23:25,171 INFO  [SessionFactoryObjectFactory] Factory name: persistence.unit:unitName=FacturationEarSpringStripes.ear/FacturationEjbStripes.jar#FacturationEjbStripesPU
    11:23:25,428 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
    11:23:25,437 INFO  [NamingHelper] Creating subcontext: persistence.unit:unitName=FacturationEarSpringStripes.ear
    11:23:25,437 INFO  [SessionFactoryObjectFactory] Bound factory to JNDI name: persistence.unit:unitName=FacturationEarSpringStripes.ear/FacturationEjbStripes.jar#FacturationEjbStripesPU
    11:23:25,437 WARN  [SessionFactoryObjectFactory] InitialContext did not implement EventContext
    11:23:25,926 INFO  [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
    11:23:26,366 INFO  [TomcatDeployment] deploy, ctxPath=/FacturationWebSpringStripes
    11:23:26,537 INFO  [[/FacturationWebSpringStripes]] Initializing Spring root WebApplicationContext
    11:23:26,537 INFO  [ContextLoader] Root WebApplicationContext: initialization started
    11:23:26,584 INFO  [XmlWebApplicationContext] Refreshing Root WebApplicationContext: startup date [Tue Apr 03 11:23:26 CEST 2012]; root of context hierarchy
    11:23:26,642 INFO  [XmlBeanDefinitionReader] Loading XML bean definitions from ServletContext resource [/WEB-INF/applicationContext.xml]
    11:23:26,906 INFO  [DefaultListableBeanFactory] Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@4f9d0c18: defining beans [suiviServiceImpl,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,suiviDaoImpl,entityManagerFactory]; root of factory hierarchy
    11:23:26,984 INFO  [LocalEntityManagerFactoryBean] Building JPA EntityManagerFactory for persistence unit 'FacturationEjbStripesPU'
    11:23:27,008 INFO  [AnnotationBinder] Binding entity from annotated class: fr.mgi.facturation.entity.Plateforme
    11:23:27,009 INFO  [QueryBinder] Binding Named query: Plateforme.findAll => SELECT p FROM Plateforme p
    11:23:27,009 INFO  [QueryBinder] Binding Named query: Plateforme.findById => SELECT p FROM Plateforme p WHERE p.id = :id
    11:23:27,009 INFO  [QueryBinder] Binding Named query: Plateforme.findByNom => SELECT p FROM Plateforme p WHERE p.nom = :nom
    11:23:27,426 INFO  [EntityBinder] Bind entity fr.mgi.facturation.entity.Plateforme on table PLATEFORME
    11:23:27,427 INFO  [AnnotationBinder] Binding entity from annotated class: fr.mgi.facturation.entity.Suivi
    11:23:27,427 INFO  [QueryBinder] Binding Named query: Suivi.findAll => SELECT s FROM Suivi s
    11:23:27,427 INFO  [QueryBinder] Binding Named query: Suivi.findById => SELECT s FROM Suivi s WHERE s.id = :id
    11:23:27,427 INFO  [QueryBinder] Binding Named query: Suivi.findByHorodatage => SELECT s FROM Suivi s WHERE s.horodatage = :horodatage
    11:23:27,926 INFO  [QueryBinder] Binding Named query: Suivi.findByPoids => SELECT s FROM Suivi s WHERE s.poids = :poids
    11:23:27,926 INFO  [EntityBinder] Bind entity fr.mgi.facturation.entity.Suivi on table SUIVI
    11:23:27,928 INFO  [AnnotationBinder] Binding entity from annotated class: fr.mgi.facturation.entity.TypeMsg
    11:23:27,928 INFO  [QueryBinder] Binding Named query: TypeMsg.findAll => SELECT t FROM TypeMsg t
    11:23:27,928 INFO  [QueryBinder] Binding Named query: TypeMsg.findById => SELECT t FROM TypeMsg t WHERE t.id = :id
    11:23:27,928 INFO  [QueryBinder] Binding Named query: TypeMsg.findByCode => SELECT t FROM TypeMsg t WHERE t.code = :code
    11:23:28,426 INFO  [EntityBinder] Bind entity fr.mgi.facturation.entity.TypeMsg on table TYPE_MSG
    11:23:28,427 INFO  [AnnotationBinder] Binding entity from annotated class: fr.mgi.facturation.entity.Partenaire
    11:23:28,428 INFO  [QueryBinder] Binding Named query: Partenaire.findAll => SELECT p FROM Partenaire p
    11:23:28,428 INFO  [QueryBinder] Binding Named query: Partenaire.findById => SELECT p FROM Partenaire p WHERE p.id = :id
    11:23:28,428 INFO  [QueryBinder] Binding Named query: Partenaire.findByNom => SELECT p FROM Partenaire p WHERE p.nom = :nom
    11:23:28,926 INFO  [EntityBinder] Bind entity fr.mgi.facturation.entity.Partenaire on table PARTENAIRE
    11:23:28,928 INFO  [CollectionBinder] Mapping collection: fr.mgi.facturation.entity.Plateforme.suiviList -> SUIVI
    11:23:28,928 INFO  [CollectionBinder] Mapping collection: fr.mgi.facturation.entity.Plateforme.suiviList1 -> SUIVI
    11:23:28,928 INFO  [CollectionBinder] Mapping collection: fr.mgi.facturation.entity.TypeMsg.suiviList -> SUIVI
    11:23:28,928 INFO  [CollectionBinder] Mapping collection: fr.mgi.facturation.entity.Partenaire.suiviList -> SUIVI
    11:23:29,429 INFO  [CollectionBinder] Mapping collection: fr.mgi.facturation.entity.Partenaire.suiviList1 -> SUIVI
    11:23:29,439 INFO  [HibernateSearchEventListenerRegister] Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
    11:23:29,441 INFO  [NamingHelper] JNDI InitialContext properties:{}
    11:23:29,442 INFO  [DatasourceConnectionProvider] Using datasource: java:/facturationDevDataSource
    11:23:29,446 INFO  [SettingsFactory] RDBMS: Oracle, version: Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    11:23:29,926 INFO  [SettingsFactory] JDBC driver: Oracle JDBC driver, version: 10.2.0.4.0
    11:23:29,931 INFO  [Dialect] Using dialect: org.hibernate.dialect.Oracle10gDialect
    11:23:29,932 INFO  [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
    11:23:29,932 INFO  [TransactionManagerLookupFactory] No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
    11:23:29,932 INFO  [SettingsFactory] Automatic flush during beforeCompletion(): disabled
    11:23:29,932 INFO  [SettingsFactory] Automatic session close at end of transaction: disabled
    11:23:30,426 INFO  [SettingsFactory] JDBC batch size: 15
    11:23:30,426 INFO  [SettingsFactory] JDBC batch updates for versioned data: disabled
    11:23:30,426 INFO  [SettingsFactory] Scrollable result sets: enabled
    11:23:30,426 INFO  [SettingsFactory] JDBC3 getGeneratedKeys(): disabled
    11:23:30,426 INFO  [SettingsFactory] Connection release mode: auto
    11:23:30,426 INFO  [SettingsFactory] Default batch fetch size: 1
    11:23:30,426 INFO  [SettingsFactory] Generate SQL with comments: disabled
    11:23:30,426 INFO  [SettingsFactory] Order SQL updates by primary key: disabled
    11:23:30,426 INFO  [SettingsFactory] Order SQL inserts for batching: disabled
    11:23:30,426 INFO  [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
    11:23:30,426 INFO  [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
    11:23:30,427 INFO  [SettingsFactory] Query language substitutions: {}
    11:23:30,427 INFO  [SettingsFactory] JPA-QL strict compliance: enabled
    11:23:30,427 INFO  [SettingsFactory] Second-level cache: enabled
    11:23:30,427 INFO  [SettingsFactory] Query cache: disabled
    11:23:30,427 INFO  [SettingsFactory] Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
    11:23:30,427 INFO  [SettingsFactory] Optimize cache for minimal puts: disabled
    11:23:30,427 INFO  [SettingsFactory] Structured second-level cache entries: disabled
    11:23:30,427 INFO  [SettingsFactory] Statistics: disabled
    11:23:30,427 INFO  [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
    11:23:30,427 INFO  [SettingsFactory] Default entity-mode: pojo
    11:23:30,427 INFO  [SettingsFactory] Named query checking : enabled
    11:23:30,432 INFO  [SessionFactoryImpl] building session factory
    11:23:30,936 INFO  [SessionFactoryObjectFactory] Not binding factory to JNDI, no JNDI name configured
    11:23:30,939 INFO  [DefaultListableBeanFactory] Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@4f9d0c18: defining beans [suiviServiceImpl,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,suiviDaoImpl,entityManagerFactory]; root of factory hierarchy
    11:23:31,437 ERROR [ContextLoader] Context initialization failed
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'suiviDaoImpl': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: [PersistenceUnit: FacturationEjbStripesPU] Unable to build EntityManagerFactory
            at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessPropertyValues(PersistenceAnnotationBeanPostProcessor.java:341)
            at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1064)
            at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:517)
            at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)
            at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:291)
            at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
            at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:288)
            at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:190)
            at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:563)
            at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:872)
            at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:423)
            at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:276)
            at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:197)
            at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:47)
            at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3910)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:4393)
            at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal(TomcatDeployment.java:310)
            at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy(TomcatDeployment.java:142)
            at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)
            at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)
            at org.jboss.web.deployers.WebModule.start(WebModule.java:97)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)
            at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)
            at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
            at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
            at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)
            at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)
            at $Proxy38.start(Unknown Source)
            at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:42)
            at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction(StartStopLifecycleAction.java:37)
            at org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
            at org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
            at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
            at org.jboss.system.microcontainer.ServiceControllerContext.install(ServiceControllerContext.java:286)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.system.ServiceController.doChange(ServiceController.java:688)
            at org.jboss.system.ServiceController.start(ServiceController.java:460)
            at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)
            at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)
            at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)
            at org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
            at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
            at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1210)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
            at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)
            at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process(MainDeployerAdapter.java:117)
            at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install(ProfileDeployAction.java:70)
            at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install(AbstractProfileAction.java:53)
            at org.jboss.system.server.profileservice.repository.AbstractProfileService.install(AbstractProfileService.java:361)
            at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
            at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)
            at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1082)
            at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
            at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
            at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile(AbstractProfileService.java:306)
            at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:271)
            at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)
            at org.jboss.Main.boot(Main.java:221)
            at org.jboss.Main$1.run(Main.java:556)
            at java.lang.Thread.run(Thread.java:619)
    Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: [PersistenceUnit: FacturationEjbStripesPU] Unable to build EntityManagerFactory
            at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1412)
            at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:519)
            at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)
            at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:291)
            at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
            at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:288)
            at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:190)
            at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findDefaultEntityManagerFactory(PersistenceAnnotationBeanPostProcessor.java:529)
            at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findEntityManagerFactory(PersistenceAnnotationBeanPostProcessor.java:495)
            at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.resolveEntityManager(PersistenceAnnotationBeanPostProcessor.java:656)
            at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.getResourceToInject(PersistenceAnnotationBeanPostProcessor.java:629)
            at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:147)
            at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:84)
            at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessPropertyValues(PersistenceAnnotationBeanPostProcessor.java:338)
            ... 83 more
    Caused by: javax.persistence.PersistenceException: [PersistenceUnit: FacturationEjbStripesPU] Unable to build EntityManagerFactory
            at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:677)
            at org.hibernate.ejb.HibernatePersistence.createEntityManagerFactory(HibernatePersistence.java:126)
            at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:52)
            at org.springframework.orm.jpa.LocalEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalEntityManagerFactoryBean.java:92)
            at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:308)
            at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1469)
            at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1409)
            ... 96 more
    Caused by: org.hibernate.HibernateException: The chosen transaction strategy requires access to the JTA TransactionManager
            at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:361)
            at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1327)
            at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:867)
            at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:669)
            ... 102 more
     
    11:23:31,931 ERROR [[/FacturationWebSpringStripes]] Exception lors de l'envoi de l'�v�nement contexte initialis� (context initialized) � l'instance de classe d'�coute (listener) org.springframework.web.context.ContextLoaderListener
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'suiviDaoImpl': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: [PersistenceUnit: FacturationEjbStripesPU] Unable to build EntityManagerFactory
            at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessPropertyValues(PersistenceAnnotationBeanPostProcessor.java:341)
            at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1064)

Discussions similaires

  1. Réponses: 0
    Dernier message: 21/05/2014, 16h19
  2. Réponses: 7
    Dernier message: 19/08/2013, 08h33
  3. Réponses: 0
    Dernier message: 16/02/2011, 17h40
  4. [Framework] [Core][Autowiring] No unique bean of type [service.AdresseDAO] is defined
    Par xadimousalih dans le forum Spring
    Réponses: 3
    Dernier message: 17/11/2008, 17h27
  5. [JSF] Erreur "bean of type null"
    Par vallica dans le forum JSF
    Réponses: 5
    Dernier message: 27/03/2006, 11h57

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