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

Java EE Discussion :

Problème de persistence avec base de données MySQL [EJB3 Entity]


Sujet :

Java EE

  1. #1
    Membre régulier
    Profil pro
    informatique
    Inscrit en
    Novembre 2009
    Messages
    167
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : informatique

    Informations forums :
    Inscription : Novembre 2009
    Messages : 167
    Points : 88
    Points
    88
    Par défaut Problème de persistence avec base de données MySQL
    Bonjour a tous , je bute sur la configuration de mon fichier persistence.xml;
    j'ai crée un projet EJB dans lequel j'ai crée une classe persistante(entity ) une interface et une classe qui implemente cette interface.
    et enfin une classe cliente
    mes classe sont en fichier joint.
    ce que je veux c'est pouvoir persister mes données dans une une base de données mysql, voici la configuration de mon fichier persistence.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
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence 
        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"
        version="1.0">
        <persistence-unit name="test">
            <properties>
                <!--
                <property name="hibernate.ejb.cfgfile" value="/hibernate.cfg.xml"/>
                <property name="hibernate.hbm2ddl.auto" value="create"/>
                -->
                <property name="hibernate.archive.autodetection" value="class, hbm"/>
                <property name="hibernate.show_sql" value="true"/>
                <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"/>
                <property name="hibernate.connection.password" value="root"/>
                <property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/jbpmdb"/>
                <property name="hibernate.connection.username" value="root"/>
                <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
                <property name="hibernate.c3p0.min_size" value="5"/>
                <property name="hibernate.c3p0.max_size" value="20"/>
                <property name="hibernate.c3p0.timeout" value="300"/>
                <property name="hibernate.c3p0.max_statements" value="50"/>
                <property name="hibernate.c3p0.idle_test_period" value="3000"/>
            </properties>
        </persistence-unit>
    </persistence>
    et voici l'erreur que j'obtient ;lors de la compilation:
    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
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    10:41:00,492 ERROR [PersistenceXmlLoader] Error parsing XML: XML InputStream(8) The value of attribute "name" associated with an element type "persistence-unit" must not contain the '<' character.
    10:41:00,494 WARN  [ServiceController] Problem creating service jboss.j2ee:service=EJB3,module=EJB-WF.jar
    org.xml.sax.SAXParseException: The value of attribute "name" associated with an element type "persistence-unit" must not contain the '<' character.
    	at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
    	at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
    	at org.jboss.ejb3.entity.PersistenceXmlLoader.loadURL(PersistenceXmlLoader.java:91)
    	at org.jboss.ejb3.entity.PersistenceXmlLoader.deploy(PersistenceXmlLoader.java:104)
    	at org.jboss.ejb3.Ejb3Deployment.initializePersistenceUnits(Ejb3Deployment.java:517)
    	at org.jboss.ejb3.Ejb3Deployment.create(Ejb3Deployment.java:323)
    	at org.jboss.ejb3.Ejb3Module.createService(Ejb3Module.java:77)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalCreate(ServiceMBeanSupport.java:260)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:243)
    	at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
    	at $Proxy0.create(Unknown Source)
    	at org.jboss.system.ServiceController.create(ServiceController.java:330)
    	at org.jboss.system.ServiceController.create(ServiceController.java:273)
    	at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy33.create(Unknown Source)
    	at org.jboss.ejb3.EJB3Deployer.create(EJB3Deployer.java:492)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    	at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
    	at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
    	at org.jboss.ws.integration.jboss42.DeployerInterceptor.create(DeployerInterceptor.java:73)
    	at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.create(SubDeployerInterceptorSupport.java:180)
    	at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:91)
    	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:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy34.create(Unknown Source)
    	at org.jboss.deployment.MainDeployer.create(MainDeployer.java:969)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:818)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
    	at sun.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    	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:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy9.deploy(Unknown Source)
    	at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
    	at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
    	at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
    	at $Proxy0.start(Unknown Source)
    	at org.jboss.system.ServiceController.start(ServiceController.java:417)
    	at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy4.start(Unknown Source)
    	at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
    	at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    	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:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy5.deploy(Unknown Source)
    	at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
    	at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
    	at org.jboss.Main.boot(Main.java:200)
    	at org.jboss.Main$1.run(Main.java:508)
    	at java.lang.Thread.run(Unknown Source)
    10:41:00,498 INFO  [EJB3Deployer] Deployed: file:/C:/jboss-4.2.0.GA/server/default/deploy/EJB-WF.jar
    10:41:00,708 INFO  [EjbModule] Deploying TimerEntityBean
    10:41:00,796 INFO  [EjbModule] Deploying CommandServiceBean
    10:41:00,808 INFO  [EjbModule] Deploying CommandListenerBean
    10:41:00,825 INFO  [EjbModule] Deploying JobListenerBean
    10:41:02,067 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'TimerEntityBean' to jndi 'java:jbpm/TimerEntityBean'
    10:41:02,084 INFO  [ProxyFactory] Bound EJB Home 'TimerEntityBean' to jndi 'jbpm/TimerEntityBean'
    10:41:02,092 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'CommandServiceBean' to jndi 'java:jbpm/CommandServiceBean'
    10:41:02,097 INFO  [ProxyFactory] Bound EJB Home 'CommandServiceBean' to jndi 'jbpm/CommandServiceBean'
    10:41:02,207 INFO  [EJBDeployer] Deployed: file:/C:/jboss-4.2.0.GA/server/default/deploy/jbpm/jbpm-enterprise.jar/
    10:41:02,259 INFO  [TomcatDeployer] deploy, ctxPath=/jbpm-console, warUrl=.../deploy/jbpm/jsf-console.war/
    10:41:02,264 WARN  [TomcatDeployer] message-destination-ref 'jms/JobQueue' ignoring message-destination-link 'JobQueue' because it has a jndi-name in jboss-web.xml
    10:41:03,050 INFO  [JbpmConfiguration] using configuration resource: jbpm.cfg.xml
    10:41:03,089 INFO  [StaleObjectLogConfigurer] stale object exceptions will be hidden from logging
    10:41:03,122 INFO  [BootstrapListener] Bootstrap Hibernate session
    10:41:03,171 INFO  [Environment] Hibernate 3.2.3
    10:41:03,179 INFO  [Environment] hibernate.properties not found
    10:41:03,181 INFO  [Environment] Bytecode provider name : javassist
    10:41:03,186 INFO  [Environment] using JDK 1.4 java.sql.Timestamp handling
    10:41:03,282 INFO  [Configuration] configuring from resource: hibernate.cfg.xml
    10:41:03,282 INFO  [Configuration] Configuration resource: hibernate.cfg.xml
    10:41:03,355 INFO  [Configuration] Reading mappings from resource : hibernate.extra.hbm.xml
    10:41:03,417 INFO  [Configuration] Reading mappings from resource : hibernate.identity.hbm.xml
    10:41:03,450 INFO  [HbmBinder] Mapping class: org.jbpm.identity.User -> JBPM_ID_USER
    10:41:03,491 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.User.permissions -> JBPM_ID_PERMISSIONS
    10:41:03,492 INFO  [HbmBinder] Mapping class: org.jbpm.identity.Group -> JBPM_ID_GROUP
    10:41:03,571 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.Group.permissions -> JBPM_ID_PERMISSIONS
    10:41:03,571 INFO  [HbmBinder] Mapping class: org.jbpm.identity.Membership -> JBPM_ID_MEMBERSHIP
    10:41:03,574 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.Membership.permissions -> JBPM_ID_PERMISSIONS
    10:41:03,574 INFO  [Configuration] Reading mappings from resource : org/jbpm/db/hibernate.queries.hbm.xml
    10:41:03,589 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/action/MailAction.hbm.xml
    10:41:03,596 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/ProcessDefinition.hbm.xml
    10:41:03,603 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.ProcessDefinition -> JBPM_PROCESSDEFINITION
    10:41:03,634 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/Node.hbm.xml
    10:41:03,641 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.Node -> JBPM_NODE
    10:41:03,654 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/Transition.hbm.xml
    10:41:03,661 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.Transition -> JBPM_TRANSITION
    10:41:03,668 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/Event.hbm.xml
    10:41:03,673 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.Event -> JBPM_EVENT
    10:41:03,675 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/Action.hbm.xml
    10:41:03,681 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.Action -> JBPM_ACTION
    10:41:03,687 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/SuperState.hbm.xml
    10:41:03,738 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.def.SuperState -> JBPM_NODE
    10:41:03,738 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/ExceptionHandler.hbm.xml
    10:41:03,743 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.ExceptionHandler -> JBPM_EXCEPTIONHANDLER
    10:41:03,745 INFO  [Configuration] Reading mappings from resource : org/jbpm/instantiation/Delegation.hbm.xml
    10:41:03,750 INFO  [HbmBinder] Mapping class: org.jbpm.instantiation.Delegation -> JBPM_DELEGATION
    10:41:03,753 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/action/Script.hbm.xml
    10:41:03,758 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.action.Script -> JBPM_ACTION
    10:41:03,758 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/StartState.hbm.xml
    10:41:03,764 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.StartState -> JBPM_NODE
    10:41:03,764 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/EndState.hbm.xml
    10:41:03,769 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.EndState -> JBPM_NODE
    10:41:03,771 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/ProcessState.hbm.xml
    10:41:03,776 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.ProcessState -> JBPM_NODE
    10:41:03,781 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/Decision.hbm.xml
    10:41:03,786 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.Decision -> JBPM_NODE
    10:41:03,790 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.node.Decision.decisionConditions -> JBPM_DECISIONCONDITIONS
    10:41:03,790 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/Fork.hbm.xml
    10:41:03,795 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.Fork -> JBPM_NODE
    10:41:03,798 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/Join.hbm.xml
    10:41:03,803 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.Join -> JBPM_NODE
    10:41:03,805 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/MailNode.hbm.xml
    10:41:03,810 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.MailNode -> JBPM_NODE
    10:41:03,810 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/State.hbm.xml
    10:41:03,815 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.State -> JBPM_NODE
    10:41:03,816 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/TaskNode.hbm.xml
    10:41:03,821 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.TaskNode -> JBPM_NODE
    10:41:03,833 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/def/ContextDefinition.hbm.xml
    10:41:03,838 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/def/VariableAccess.hbm.xml
    10:41:03,844 INFO  [HbmBinder] Mapping class: org.jbpm.context.def.VariableAccess -> JBPM_VARIABLEACCESS
    10:41:03,847 INFO  [Configuration] Reading mappings from resource : org/jbpm/bytes/ByteArray.hbm.xml
    10:41:03,853 INFO  [HbmBinder] Mapping class: org.jbpm.bytes.ByteArray -> JBPM_BYTEARRAY
    10:41:03,855 INFO  [HbmBinder] Mapping collection: org.jbpm.bytes.ByteArray.byteBlocks -> JBPM_BYTEBLOCK
    10:41:03,855 INFO  [Configuration] Reading mappings from resource : org/jbpm/module/def/ModuleDefinition.hbm.xml
    10:41:03,861 INFO  [HbmBinder] Mapping class: org.jbpm.module.def.ModuleDefinition -> JBPM_MODULEDEFINITION
    10:41:03,862 INFO  [Configuration] Reading mappings from resource : org/jbpm/file/def/FileDefinition.hbm.xml
    10:41:03,868 INFO  [HbmBinder] Mapping subclass: org.jbpm.file.def.FileDefinition -> JBPM_MODULEDEFINITION
    10:41:03,869 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/def/TaskMgmtDefinition.hbm.xml
    10:41:03,874 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.def.TaskMgmtDefinition -> JBPM_MODULEDEFINITION
    10:41:03,876 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/def/Swimlane.hbm.xml
    10:41:03,891 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.Swimlane -> JBPM_SWIMLANE
    10:41:03,894 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/def/Task.hbm.xml
    10:41:03,900 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.Task -> JBPM_TASK
    10:41:03,911 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/def/TaskController.hbm.xml
    10:41:03,916 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.TaskController -> JBPM_TASKCONTROLLER
    10:41:03,919 INFO  [Configuration] Reading mappings from resource : org/jbpm/scheduler/def/CreateTimerAction.hbm.xml
    10:41:03,924 INFO  [HbmBinder] Mapping subclass: org.jbpm.scheduler.def.CreateTimerAction -> JBPM_ACTION
    10:41:03,929 INFO  [Configuration] Reading mappings from resource : org/jbpm/scheduler/def/CancelTimerAction.hbm.xml
    10:41:03,934 INFO  [HbmBinder] Mapping subclass: org.jbpm.scheduler.def.CancelTimerAction -> JBPM_ACTION
    10:41:03,935 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/exe/Comment.hbm.xml
    10:41:03,940 INFO  [HbmBinder] Mapping class: org.jbpm.graph.exe.Comment -> JBPM_COMMENT
    10:41:03,945 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/exe/ProcessInstance.hbm.xml
    10:41:03,951 INFO  [HbmBinder] Mapping class: org.jbpm.graph.exe.ProcessInstance -> JBPM_PROCESSINSTANCE
    10:41:03,961 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/exe/Token.hbm.xml
    10:41:03,967 INFO  [HbmBinder] Mapping class: org.jbpm.graph.exe.Token -> JBPM_TOKEN
    10:41:03,978 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/exe/RuntimeAction.hbm.xml
    10:41:03,983 INFO  [HbmBinder] Mapping class: org.jbpm.graph.exe.RuntimeAction -> JBPM_RUNTIMEACTION
    10:41:03,986 INFO  [Configuration] Reading mappings from resource : org/jbpm/module/exe/ModuleInstance.hbm.xml
    10:41:03,991 INFO  [HbmBinder] Mapping class: org.jbpm.module.exe.ModuleInstance -> JBPM_MODULEINSTANCE
    10:41:03,992 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/ContextInstance.hbm.xml
    10:41:03,997 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.ContextInstance -> JBPM_MODULEINSTANCE
    10:41:03,997 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/TokenVariableMap.hbm.xml
    10:41:04,002 INFO  [HbmBinder] Mapping class: org.jbpm.context.exe.TokenVariableMap -> JBPM_TOKENVARIABLEMAP
    10:41:04,008 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/VariableInstance.hbm.xml
    10:41:04,014 INFO  [HbmBinder] Mapping class: org.jbpm.context.exe.VariableInstance -> JBPM_VARIABLEINSTANCE
    10:41:04,021 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/ByteArrayInstance.hbm.xml
    10:41:04,025 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.ByteArrayInstance -> JBPM_VARIABLEINSTANCE
    10:41:04,026 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/DateInstance.hbm.xml
    10:41:04,031 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.DateInstance -> JBPM_VARIABLEINSTANCE
    10:41:04,031 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/DoubleInstance.hbm.xml
    10:41:04,037 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.DoubleInstance -> JBPM_VARIABLEINSTANCE
    10:41:04,037 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/HibernateLongInstance.hbm.xml
    10:41:04,043 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateLongInstance -> JBPM_VARIABLEINSTANCE
    10:41:04,044 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/HibernateStringInstance.hbm.xml
    10:41:04,049 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateStringInstance -> JBPM_VARIABLEINSTANCE
    10:41:04,049 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/LongInstance.hbm.xml
    10:41:04,054 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.LongInstance -> JBPM_VARIABLEINSTANCE
    10:41:04,054 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/NullInstance.hbm.xml
    10:41:04,059 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.NullInstance -> JBPM_VARIABLEINSTANCE
    10:41:04,059 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml
    10:41:04,064 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.StringInstance -> JBPM_VARIABLEINSTANCE
    10:41:04,064 INFO  [Configuration] Reading mappings from resource : org/jbpm/job/Job.hbm.xml
    10:41:04,069 INFO  [HbmBinder] Mapping class: org.jbpm.job.Job -> JBPM_JOB
    10:41:04,074 INFO  [Configuration] Reading mappings from resource : org/jbpm/job/Timer.hbm.xml
    10:41:04,079 INFO  [HbmBinder] Mapping subclass: org.jbpm.job.Timer -> JBPM_JOB
    10:41:04,082 INFO  [Configuration] Reading mappings from resource : org/jbpm/job/ExecuteNodeJob.hbm.xml
    10:41:04,087 INFO  [HbmBinder] Mapping subclass: org.jbpm.job.ExecuteNodeJob -> JBPM_JOB
    10:41:04,088 INFO  [Configuration] Reading mappings from resource : org/jbpm/job/ExecuteActionJob.hbm.xml
    10:41:04,092 INFO  [HbmBinder] Mapping subclass: org.jbpm.job.ExecuteActionJob -> JBPM_JOB
    10:41:04,093 INFO  [Configuration] Reading mappings from resource : org/jbpm/job/CleanUpProcessJob.hbm.xml
    10:41:04,098 INFO  [HbmBinder] Mapping subclass: org.jbpm.job.CleanUpProcessJob -> JBPM_JOB
    10:41:04,098 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/exe/TaskMgmtInstance.hbm.xml
    10:41:04,105 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.exe.TaskMgmtInstance -> JBPM_MODULEINSTANCE
    10:41:04,109 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml
    10:41:04,115 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.TaskInstance -> JBPM_TASKINSTANCE
    10:41:04,129 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.pooledActors -> JBPM_TASKACTORPOOL
    10:41:04,130 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/exe/PooledActor.hbm.xml
    10:41:04,135 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.PooledActor -> JBPM_POOLEDACTOR
    10:41:04,138 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.PooledActor.taskInstances -> JBPM_TASKACTORPOOL
    10:41:04,138 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/exe/SwimlaneInstance.hbm.xml
    10:41:04,144 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.SwimlaneInstance -> JBPM_SWIMLANEINSTANCE
    10:41:04,147 INFO  [Configuration] Reading mappings from resource : org/jbpm/logging/log/ProcessLog.hbm.xml
    10:41:04,153 INFO  [HbmBinder] Mapping class: org.jbpm.logging.log.ProcessLog -> JBPM_LOG
    10:41:04,155 INFO  [Configuration] Reading mappings from resource : org/jbpm/logging/log/MessageLog.hbm.xml
    10:41:04,159 INFO  [HbmBinder] Mapping subclass: org.jbpm.logging.log.MessageLog -> JBPM_LOG
    10:41:04,160 INFO  [Configuration] Reading mappings from resource : org/jbpm/logging/log/CompositeLog.hbm.xml
    10:41:04,164 INFO  [HbmBinder] Mapping subclass: org.jbpm.logging.log.CompositeLog -> JBPM_LOG
    10:41:04,165 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/ActionLog.hbm.xml
    10:41:04,169 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.ActionLog -> JBPM_LOG
    10:41:04,170 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/NodeLog.hbm.xml
    10:41:04,174 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.NodeLog -> JBPM_LOG
    10:41:04,176 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/ProcessInstanceCreateLog.hbm.xml
    10:41:04,181 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessInstanceCreateLog -> JBPM_LOG
    10:41:04,181 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/ProcessInstanceEndLog.hbm.xml
    10:41:04,186 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessInstanceEndLog -> JBPM_LOG
    10:41:04,186 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/ProcessStateLog.hbm.xml
    10:41:04,191 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessStateLog -> JBPM_LOG
    10:41:04,191 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/SignalLog.hbm.xml
    10:41:04,196 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.SignalLog -> JBPM_LOG
    10:41:04,196 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/TokenCreateLog.hbm.xml
    10:41:04,201 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.TokenCreateLog -> JBPM_LOG
    10:41:04,202 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/TokenEndLog.hbm.xml
    10:41:04,207 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.TokenEndLog -> JBPM_LOG
    10:41:04,207 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/TransitionLog.hbm.xml
    10:41:04,212 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.TransitionLog -> JBPM_LOG
    10:41:04,213 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/VariableLog.hbm.xml
    10:41:04,219 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableLog -> JBPM_LOG
    10:41:04,220 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/VariableCreateLog.hbm.xml
    10:41:04,225 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableCreateLog -> JBPM_LOG
    10:41:04,225 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/VariableDeleteLog.hbm.xml
    10:41:04,230 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableDeleteLog -> JBPM_LOG
    10:41:04,231 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/VariableUpdateLog.hbm.xml
    10:41:04,237 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableUpdateLog -> JBPM_LOG
    10:41:04,237 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/ByteArrayUpdateLog.hbm.xml
    10:41:04,242 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.ByteArrayUpdateLog -> JBPM_LOG
    10:41:04,243 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/DateUpdateLog.hbm.xml
    10:41:04,248 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.DateUpdateLog -> JBPM_LOG
    10:41:04,248 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/DoubleUpdateLog.hbm.xml
    10:41:04,253 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.DoubleUpdateLog -> JBPM_LOG
    10:41:04,253 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/HibernateLongUpdateLog.hbm.xml
    10:41:04,258 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.HibernateLongUpdateLog -> JBPM_LOG
    10:41:04,259 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/HibernateStringUpdateLog.hbm.xml
    10:41:04,264 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.HibernateStringUpdateLog -> JBPM_LOG
    10:41:04,264 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/LongUpdateLog.hbm.xml
    10:41:04,269 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.LongUpdateLog -> JBPM_LOG
    10:41:04,269 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml
    10:41:04,274 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.StringUpdateLog -> JBPM_LOG
    10:41:04,274 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/TaskLog.hbm.xml
    10:41:04,279 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskLog -> JBPM_LOG
    10:41:04,280 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/TaskCreateLog.hbm.xml
    10:41:04,285 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskCreateLog -> JBPM_LOG
    10:41:04,285 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/TaskAssignLog.hbm.xml
    10:41:04,290 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskAssignLog -> JBPM_LOG
    10:41:04,291 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/TaskEndLog.hbm.xml
    10:41:04,296 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskEndLog -> JBPM_LOG
    10:41:04,296 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneLog.hbm.xml
    10:41:04,301 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneLog -> JBPM_LOG
    10:41:04,301 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneCreateLog.hbm.xml
    10:41:04,306 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneCreateLog -> JBPM_LOG
    10:41:04,308 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneAssignLog.hbm.xml
    10:41:04,314 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneAssignLog -> JBPM_LOG
    10:41:04,316 INFO  [Configuration] Configured SessionFactory: null
    10:41:04,317 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.def.ContextDefinition -> JBPM_MODULEDEFINITION
    10:41:04,317 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.action.MailAction -> JBPM_ACTION
    10:41:04,318 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.User.memberships -> JBPM_ID_MEMBERSHIP
    10:41:04,319 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.Group.children -> JBPM_ID_GROUP
    10:41:04,319 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.Group.memberships -> JBPM_ID_MEMBERSHIP
    10:41:04,320 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.events -> JBPM_EVENT
    10:41:04,320 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
    10:41:04,320 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.nodes -> JBPM_NODE
    10:41:04,320 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.actions -> JBPM_ACTION
    10:41:04,321 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.definitions -> JBPM_MODULEDEFINITION
    10:41:04,321 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.events -> JBPM_EVENT
    10:41:04,321 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
    10:41:04,321 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.leavingTransitions -> JBPM_TRANSITION
    10:41:04,321 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.arrivingTransitions -> JBPM_TRANSITION
    10:41:04,321 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Transition.events -> JBPM_EVENT
    10:41:04,321 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Transition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
    10:41:04,322 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Event.actions -> JBPM_ACTION
    10:41:04,322 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.SuperState.nodes -> JBPM_NODE
    10:41:04,322 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ExceptionHandler.actions -> JBPM_ACTION
    10:41:04,322 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.action.Script.variableAccesses -> JBPM_VARIABLEACCESS
    10:41:04,323 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.node.ProcessState.variableAccesses -> JBPM_VARIABLEACCESS
    10:41:04,326 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.node.TaskNode.tasks -> JBPM_TASK
    10:41:04,327 INFO  [HbmBinder] Mapping collection: org.jbpm.file.def.FileDefinition.processFiles -> JBPM_BYTEARRAY
    10:41:04,327 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes -> JBPM_SWIMLANE
    10:41:04,327 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks -> JBPM_TASK
    10:41:04,327 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Swimlane.tasks -> JBPM_TASK
    10:41:04,327 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Task.events -> JBPM_EVENT
    10:41:04,328 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Task.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
    10:41:04,328 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskController.variableAccesses -> JBPM_VARIABLEACCESS
    10:41:04,328 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.exe.ProcessInstance.runtimeActions -> JBPM_RUNTIMEACTION
    10:41:04,328 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.exe.ProcessInstance.instances -> JBPM_MODULEINSTANCE
    10:41:04,328 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.exe.Token.children -> JBPM_TOKEN
    10:41:04,328 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.exe.Token.comments -> JBPM_COMMENT
    10:41:04,329 INFO  [HbmBinder] Mapping collection: org.jbpm.context.exe.ContextInstance.tokenVariableMaps -> JBPM_TOKENVARIABLEMAP
    10:41:04,329 INFO  [HbmBinder] Mapping collection: org.jbpm.context.exe.TokenVariableMap.variableInstances -> JBPM_VARIABLEINSTANCE
    10:41:04,330 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.swimlaneInstances -> JBPM_SWIMLANEINSTANCE
    10:41:04,330 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.taskInstances -> JBPM_TASKINSTANCE
    10:41:04,330 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.variableInstances -> JBPM_VARIABLEINSTANCE
    10:41:04,330 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.comments -> JBPM_COMMENT
    10:41:04,331 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.SwimlaneInstance.pooledActors -> JBPM_POOLEDACTOR
    10:41:04,331 INFO  [HbmBinder] Mapping collection: org.jbpm.logging.log.CompositeLog.children -> JBPM_LOG
    10:41:04,402 INFO  [NamingHelper] JNDI InitialContext properties:{}
    10:41:04,403 INFO  [DatasourceConnectionProvider] Using datasource: java:JbpmDS
    10:41:04,405 INFO  [SettingsFactory] RDBMS: MySQL, version: 5.0.37-community-nt
    10:41:04,405 INFO  [SettingsFactory] JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.1.22 ( Revision: ${bzr.revision-id} )
    10:41:04,429 INFO  [Dialect] Using dialect: org.hibernate.dialect.MySQL5InnoDBDialect
    10:41:04,437 INFO  [TransactionFactoryFactory] Transaction strategy: org.hibernate.transaction.JTATransactionFactory
    10:41:04,441 INFO  [NamingHelper] JNDI InitialContext properties:{}
    10:41:04,444 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
    10:41:04,447 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
    10:41:04,447 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
    10:41:04,447 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
    10:41:04,447 INFO  [SettingsFactory] Automatic flush during beforeCompletion(): disabled
    10:41:04,447 INFO  [SettingsFactory] Automatic session close at end of transaction: disabled
    10:41:04,447 INFO  [SettingsFactory] JDBC batch size: 15
    10:41:04,447 INFO  [SettingsFactory] JDBC batch updates for versioned data: disabled
    10:41:04,448 INFO  [SettingsFactory] Scrollable result sets: enabled
    10:41:04,448 INFO  [SettingsFactory] JDBC3 getGeneratedKeys(): enabled
    10:41:04,448 INFO  [SettingsFactory] Connection release mode: auto
    10:41:04,449 INFO  [SettingsFactory] Maximum outer join fetch depth: 2
    10:41:04,449 INFO  [SettingsFactory] Default batch fetch size: 1
    10:41:04,449 INFO  [SettingsFactory] Generate SQL with comments: enabled
    10:41:04,449 INFO  [SettingsFactory] Order SQL updates by primary key: disabled
    10:41:04,449 INFO  [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
    10:41:04,454 INFO  [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
    10:41:04,454 INFO  [SettingsFactory] Query language substitutions: {}
    10:41:04,454 INFO  [SettingsFactory] JPA-QL strict compliance: disabled
    10:41:04,454 INFO  [SettingsFactory] Second-level cache: enabled
    10:41:04,454 INFO  [SettingsFactory] Query cache: disabled
    10:41:04,454 INFO  [SettingsFactory] Cache provider: org.hibernate.cache.HashtableCacheProvider
    10:41:04,456 INFO  [SettingsFactory] Optimize cache for minimal puts: disabled
    10:41:04,456 INFO  [SettingsFactory] Structured second-level cache entries: disabled
    10:41:04,464 INFO  [SettingsFactory] Statistics: disabled
    10:41:04,464 INFO  [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
    10:41:04,464 INFO  [SettingsFactory] Default entity-mode: pojo
    10:41:04,464 INFO  [SettingsFactory] Named query checking : enabled
    10:41:04,503 INFO  [SessionFactoryImpl] building session factory
    10:41:06,492 INFO  [SessionFactoryObjectFactory] Not binding factory to JNDI, no JNDI name configured
    10:41:06,492 INFO  [NamingHelper] JNDI InitialContext properties:{}
    10:41:07,237 INFO  [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/
    10:41:07,357 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
     
    --- MBeans waiting for other MBeans ---
    ObjectName: jboss.j2ee:service=EJB3,module=EJB-WF.jar
      State: FAILED
      Reason: org.xml.sax.SAXParseException: The value of attribute "name" associated with an element type "persistence-unit" must not contain the '<' character.
     
    --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
    ObjectName: jboss.j2ee:service=EJB3,module=EJB-WF.jar
      State: FAILED
      Reason: org.xml.sax.SAXParseException: The value of attribute "name" associated with an element type "persistence-unit" must not contain the '<' character.
     
     
    10:41:07,411 INFO  [Http11Protocol] Démarrage de Coyote HTTP/1.1 sur http-127.0.0.1-8080
    10:41:07,435 INFO  [AjpProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
    10:41:07,460 INFO  [Server] JBoss (MX MicroKernel) [4.2.0.GA (build: SVNTag=JBoss_4_2_0_GA date=200705111440)] Started in 19s:935ms
    10:41:12,460 INFO  [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.entity.PersistenceUnitDeployment
    10:41:12,463 INFO  [JmxKernelAbstraction] installing MBean: persistence.units:jar=EJB-WF.jar,unitName=test with dependencies:
    10:41:12,464 INFO  [PersistenceUnitDeployment] Starting persistence unit persistence.units:jar=EJB-WF.jar,unitName=test
    10:41:12,471 WARN  [ServiceController] Problem starting service persistence.units:jar=EJB-WF.jar,unitName=test
    java.lang.RuntimeException: You have not defined a jta-data-source for a JTA enabled persistence context named: test
    	at org.jboss.ejb3.entity.PersistenceUnitDeployment.start(PersistenceUnitDeployment.java:220)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.ejb3.ServiceDelegateWrapper.startService(ServiceDelegateWrapper.java:103)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
    	at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
    	at $Proxy0.start(Unknown Source)
    	at org.jboss.system.ServiceController.start(ServiceController.java:417)
    	at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy78.start(Unknown Source)
    	at org.jboss.ejb3.JmxKernelAbstraction.install(JmxKernelAbstraction.java:120)
    	at org.jboss.ejb3.Ejb3Deployment.startPersistenceUnits(Ejb3Deployment.java:551)
    	at org.jboss.ejb3.Ejb3Deployment.start(Ejb3Deployment.java:333)
    	at org.jboss.ejb3.Ejb3Module.startService(Ejb3Module.java:91)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
    	at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
    	at $Proxy0.start(Unknown Source)
    	at org.jboss.system.ServiceController.start(ServiceController.java:417)
    	at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy33.start(Unknown Source)
    	at org.jboss.ejb3.EJB3Deployer.start(EJB3Deployer.java:512)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    	at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
    	at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
    	at org.jboss.ws.integration.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:93)
    	at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
    	at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
    	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:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy34.start(Unknown Source)
    	at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
    	at sun.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    	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:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy9.deploy(Unknown Source)
    	at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
    	at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:610)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:274)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:225)
    10:41:12,504 INFO  [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
    10:41:12,508 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=EJB-WF.jar,name=BeanConge,service=EJB3 with dependencies:
    10:41:12,508 INFO  [JmxKernelAbstraction] 	persistence.units:jar=EJB-WF.jar,unitName=test
    10:41:12,510 INFO  [EJB3Deployer] Deployed: file:/C:/jboss-4.2.0.GA/server/default/deploy/EJB-WF.jar
    10:41:12,513 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
     
    --- MBeans waiting for other MBeans ---
    ObjectName: persistence.units:jar=EJB-WF.jar,unitName=test
      State: FAILED
      Reason: java.lang.RuntimeException: You have not defined a jta-data-source for a JTA enabled persistence context named: test
      Depends On Me:
        jboss.j2ee:jar=EJB-WF.jar,name=BeanConge,service=EJB3
     
    ObjectName: jboss.j2ee:jar=EJB-WF.jar,name=BeanConge,service=EJB3
      State: NOTYETINSTALLED
      I Depend On:
        persistence.units:jar=EJB-WF.jar,unitName=test
     
    --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
    ObjectName: persistence.units:jar=EJB-WF.jar,unitName=test
      State: FAILED
      Reason: java.lang.RuntimeException: You have not defined a jta-data-source for a JTA enabled persistence context named: test
      Depends On Me:
        jboss.j2ee:jar=EJB-WF.jar,name=BeanConge,service=EJB3
    je ne sais pas vraiment comment corriger on bien comment configurer si quelqu'un a une idée du probleme
    Fichiers attachés Fichiers attachés

  2. #2
    Expert confirmé
    Profil pro
    Inscrit en
    Août 2006
    Messages
    3 274
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Août 2006
    Messages : 3 274
    Points : 4 141
    Points
    4 141
    Par défaut
    Et en rajoutant l'attribut transaction-type ainsi que sa valeur apres l'attribut name de ton PersistenceUnit ?

  3. #3
    Membre régulier
    Profil pro
    informatique
    Inscrit en
    Novembre 2009
    Messages
    167
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : informatique

    Informations forums :
    Inscription : Novembre 2009
    Messages : 167
    Points : 88
    Points
    88
    Par défaut
    Citation Envoyé par fr1man Voir le message
    Et en rajoutant l'attribut transaction-type ainsi que sa valeur apres l'attribut name de ton PersistenceUnit ?
    toujours la meme erreur; j'ai mis dans mon persistance.xml
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     <persistence-unit name="test" transaction-type="RESOURCE_LOCAL">

  4. #4
    Membre régulier
    Profil pro
    informatique
    Inscrit en
    Novembre 2009
    Messages
    167
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : informatique

    Informations forums :
    Inscription : Novembre 2009
    Messages : 167
    Points : 88
    Points
    88
    Par défaut
    je cherche beaucoup plus a change de SGBD c'est a dire utilisé mysql serveur au lieu de HSQLDB , j'ai essaiyé cette configuration mais sans succées
    http://www-etud.iro.umontreal.ca/~di...4/jboss_as.pdf.
    pouver vous me guider vers une bonne configuration qui marche

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

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

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    Ton erreur est claire pourtant :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    The value of attribute "name" associated with an element type "persistence-unit" must not contain the '<' character.
    Ca signifie que la structure du fichier XML.

    Mais, en copiant/collant ton fichier je n'ai aucune erreur de syntaxe.
    Es-tu sûr de nous montrer le bon fichier persistence.xml de ton projet (n'en aurais-tu pas plusieurs ?)

    Dernière tentative : ré-écrit ton fichier en entier en partant de zéro et sans faire de copier / coller ! Tu as peut-être un caractère caché qui se ballade et qui te fais une erreur dans ta structure (ça arrive).
    Moins on code, moins il y a de bug ... et vice-versa ainsi qu'inversement ...

  6. #6
    Membre régulier
    Profil pro
    informatique
    Inscrit en
    Novembre 2009
    Messages
    167
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : informatique

    Informations forums :
    Inscription : Novembre 2009
    Messages : 167
    Points : 88
    Points
    88
    Par défaut
    Citation Envoyé par fxrobin Voir le message
    Ton erreur est claire pourtant :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    The value of attribute "name" associated with an element type "persistence-unit" must not contain the '<' character.
    Ca signifie que la structure du fichier XML.

    Mais, en copiant/collant ton fichier je n'ai aucune erreur de syntaxe.
    Es-tu sûr de nous montrer le bon fichier persistence.xml de ton projet (n'en aurais-tu pas plusieurs ?)

    Dernière tentative : ré-écrit ton fichier en entier en partant de zéro et sans faire de copier / coller ! Tu as peut-être un caractère caché qui se ballade et qui te fais une erreur dans ta structure (ça arrive).
    j'ai recopié le fichier que j'ai posté mais j'ai toujours des erreurs et je ne sais comment les régler , est ce vraiment comme ça ( en un simple fichier.xml) que je vais changer de SGBD ? je suis tombé sur le tutoriel que j'ai mis dans mon précédant commentaire et là j’avoue que je suis vraiment confuses

    voici les erreurs de la 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
    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
    452
    453
    454
    455
    456
    10:00:32,204 WARN  [ServiceController] Problem starting service persistence.units:jar=EJB-WF.jar,unitName=test
    java.lang.RuntimeException: You have not defined a jta-data-source for a JTA enabled persistence context named: test
    	at org.jboss.ejb3.entity.PersistenceUnitDeployment.start(PersistenceUnitDeployment.java:220)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.ejb3.ServiceDelegateWrapper.startService(ServiceDelegateWrapper.java:103)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
    	at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
    	at $Proxy0.start(Unknown Source)
    	at org.jboss.system.ServiceController.start(ServiceController.java:417)
    	at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy57.start(Unknown Source)
    	at org.jboss.ejb3.JmxKernelAbstraction.install(JmxKernelAbstraction.java:120)
    	at org.jboss.ejb3.Ejb3Deployment.startPersistenceUnits(Ejb3Deployment.java:551)
    	at org.jboss.ejb3.Ejb3Deployment.start(Ejb3Deployment.java:333)
    	at org.jboss.ejb3.Ejb3Module.startService(Ejb3Module.java:91)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
    	at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
    	at $Proxy0.start(Unknown Source)
    	at org.jboss.system.ServiceController.start(ServiceController.java:417)
    	at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy33.start(Unknown Source)
    	at org.jboss.ejb3.EJB3Deployer.start(EJB3Deployer.java:512)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    	at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
    	at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
    	at org.jboss.ws.integration.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:93)
    	at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
    	at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
    	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:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy34.start(Unknown Source)
    	at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
    	at sun.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    	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:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy9.deploy(Unknown Source)
    	at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
    	at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
    	at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
    	at $Proxy0.start(Unknown Source)
    	at org.jboss.system.ServiceController.start(ServiceController.java:417)
    	at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy4.start(Unknown Source)
    	at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
    	at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    	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:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy5.deploy(Unknown Source)
    	at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
    	at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
    	at org.jboss.Main.boot(Main.java:200)
    	at org.jboss.Main$1.run(Main.java:508)
    	at java.lang.Thread.run(Unknown Source)
    10:00:32,256 INFO  [JmxKernelAbstraction] creating wrapper delegate for: org.jboss.ejb3.stateless.StatelessContainer
    10:00:32,261 INFO  [JmxKernelAbstraction] installing MBean: jboss.j2ee:jar=EJB-WF.jar,name=BeanConge,service=EJB3 with dependencies:
    10:00:32,261 INFO  [JmxKernelAbstraction] 	persistence.units:jar=EJB-WF.jar,unitName=test
    10:00:32,263 INFO  [EJB3Deployer] Deployed: file:/C:/jboss-4.2.0.GA/server/default/deploy/EJB-WF.jar
    10:00:32,641 INFO  [EjbModule] Deploying TimerEntityBean
    10:00:32,732 INFO  [EjbModule] Deploying CommandServiceBean
    10:00:32,746 INFO  [EjbModule] Deploying CommandListenerBean
    10:00:32,765 INFO  [EjbModule] Deploying JobListenerBean
    10:00:34,214 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'TimerEntityBean' to jndi 'java:jbpm/TimerEntityBean'
    10:00:34,235 INFO  [ProxyFactory] Bound EJB Home 'TimerEntityBean' to jndi 'jbpm/TimerEntityBean'
    10:00:34,245 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'CommandServiceBean' to jndi 'java:jbpm/CommandServiceBean'
    10:00:34,250 INFO  [ProxyFactory] Bound EJB Home 'CommandServiceBean' to jndi 'jbpm/CommandServiceBean'
    10:00:34,366 INFO  [EJBDeployer] Deployed: file:/C:/jboss-4.2.0.GA/server/default/deploy/jbpm/jbpm-enterprise.jar/
    10:00:34,470 INFO  [TomcatDeployer] deploy, ctxPath=/jbpm-console, warUrl=.../deploy/jbpm/jsf-console.war/
    10:00:34,473 WARN  [TomcatDeployer] message-destination-ref 'jms/JobQueue' ignoring message-destination-link 'JobQueue' because it has a jndi-name in jboss-web.xml
    10:00:35,296 INFO  [JbpmConfiguration] using configuration resource: jbpm.cfg.xml
    10:00:35,339 INFO  [StaleObjectLogConfigurer] stale object exceptions will be hidden from logging
    10:00:35,375 INFO  [BootstrapListener] Bootstrap Hibernate session
    10:00:35,424 INFO  [Environment] Hibernate 3.2.3
    10:00:35,432 INFO  [Environment] hibernate.properties not found
    10:00:35,435 INFO  [Environment] Bytecode provider name : javassist
    10:00:35,442 INFO  [Environment] using JDK 1.4 java.sql.Timestamp handling
    10:00:35,548 INFO  [Configuration] configuring from resource: hibernate.cfg.xml
    10:00:35,548 INFO  [Configuration] Configuration resource: hibernate.cfg.xml
    10:00:35,636 INFO  [Configuration] Reading mappings from resource : hibernate.extra.hbm.xml
    10:00:35,698 INFO  [Configuration] Reading mappings from resource : hibernate.identity.hbm.xml
    10:00:35,724 INFO  [HbmBinder] Mapping class: org.jbpm.identity.User -> JBPM_ID_USER
    10:00:35,767 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.User.permissions -> JBPM_ID_PERMISSIONS
    10:00:35,767 INFO  [HbmBinder] Mapping class: org.jbpm.identity.Group -> JBPM_ID_GROUP
    10:00:35,854 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.Group.permissions -> JBPM_ID_PERMISSIONS
    10:00:35,855 INFO  [HbmBinder] Mapping class: org.jbpm.identity.Membership -> JBPM_ID_MEMBERSHIP
    10:00:35,857 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.Membership.permissions -> JBPM_ID_PERMISSIONS
    10:00:35,857 INFO  [Configuration] Reading mappings from resource : org/jbpm/db/hibernate.queries.hbm.xml
    10:00:35,872 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/action/MailAction.hbm.xml
    10:00:35,879 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/ProcessDefinition.hbm.xml
    10:00:35,886 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.ProcessDefinition -> JBPM_PROCESSDEFINITION
    10:00:35,933 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/Node.hbm.xml
    10:00:35,943 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.Node -> JBPM_NODE
    10:00:35,957 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/Transition.hbm.xml
    10:00:35,963 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.Transition -> JBPM_TRANSITION
    10:00:35,970 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/Event.hbm.xml
    10:00:35,978 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.Event -> JBPM_EVENT
    10:00:35,990 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/Action.hbm.xml
    10:00:35,997 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.Action -> JBPM_ACTION
    10:00:36,003 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/SuperState.hbm.xml
    10:00:36,062 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.def.SuperState -> JBPM_NODE
    10:00:36,063 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/def/ExceptionHandler.hbm.xml
    10:00:36,069 INFO  [HbmBinder] Mapping class: org.jbpm.graph.def.ExceptionHandler -> JBPM_EXCEPTIONHANDLER
    10:00:36,070 INFO  [Configuration] Reading mappings from resource : org/jbpm/instantiation/Delegation.hbm.xml
    10:00:36,077 INFO  [HbmBinder] Mapping class: org.jbpm.instantiation.Delegation -> JBPM_DELEGATION
    10:00:36,079 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/action/Script.hbm.xml
    10:00:36,085 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.action.Script -> JBPM_ACTION
    10:00:36,085 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/StartState.hbm.xml
    10:00:36,093 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.StartState -> JBPM_NODE
    10:00:36,093 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/EndState.hbm.xml
    10:00:36,099 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.EndState -> JBPM_NODE
    10:00:36,101 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/ProcessState.hbm.xml
    10:00:36,109 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.ProcessState -> JBPM_NODE
    10:00:36,114 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/Decision.hbm.xml
    10:00:36,119 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.Decision -> JBPM_NODE
    10:00:36,126 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.node.Decision.decisionConditions -> JBPM_DECISIONCONDITIONS
    10:00:36,127 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/Fork.hbm.xml
    10:00:36,134 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.Fork -> JBPM_NODE
    10:00:36,143 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/Join.hbm.xml
    10:00:36,148 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.Join -> JBPM_NODE
    10:00:36,151 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/MailNode.hbm.xml
    10:00:36,157 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.MailNode -> JBPM_NODE
    10:00:36,157 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/State.hbm.xml
    10:00:36,162 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.State -> JBPM_NODE
    10:00:36,162 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/node/TaskNode.hbm.xml
    10:00:36,170 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.node.TaskNode -> JBPM_NODE
    10:00:36,182 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/def/ContextDefinition.hbm.xml
    10:00:36,187 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/def/VariableAccess.hbm.xml
    10:00:36,193 INFO  [HbmBinder] Mapping class: org.jbpm.context.def.VariableAccess -> JBPM_VARIABLEACCESS
    10:00:36,197 INFO  [Configuration] Reading mappings from resource : org/jbpm/bytes/ByteArray.hbm.xml
    10:00:36,203 INFO  [HbmBinder] Mapping class: org.jbpm.bytes.ByteArray -> JBPM_BYTEARRAY
    10:00:36,205 INFO  [HbmBinder] Mapping collection: org.jbpm.bytes.ByteArray.byteBlocks -> JBPM_BYTEBLOCK
    10:00:36,206 INFO  [Configuration] Reading mappings from resource : org/jbpm/module/def/ModuleDefinition.hbm.xml
    10:00:36,211 INFO  [HbmBinder] Mapping class: org.jbpm.module.def.ModuleDefinition -> JBPM_MODULEDEFINITION
    10:00:36,213 INFO  [Configuration] Reading mappings from resource : org/jbpm/file/def/FileDefinition.hbm.xml
    10:00:36,219 INFO  [HbmBinder] Mapping subclass: org.jbpm.file.def.FileDefinition -> JBPM_MODULEDEFINITION
    10:00:36,219 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/def/TaskMgmtDefinition.hbm.xml
    10:00:36,226 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.def.TaskMgmtDefinition -> JBPM_MODULEDEFINITION
    10:00:36,228 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/def/Swimlane.hbm.xml
    10:00:36,234 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.Swimlane -> JBPM_SWIMLANE
    10:00:36,238 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/def/Task.hbm.xml
    10:00:36,245 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.Task -> JBPM_TASK
    10:00:36,256 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/def/TaskController.hbm.xml
    10:00:36,264 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.TaskController -> JBPM_TASKCONTROLLER
    10:00:36,267 INFO  [Configuration] Reading mappings from resource : org/jbpm/scheduler/def/CreateTimerAction.hbm.xml
    10:00:36,272 INFO  [HbmBinder] Mapping subclass: org.jbpm.scheduler.def.CreateTimerAction -> JBPM_ACTION
    10:00:36,290 INFO  [Configuration] Reading mappings from resource : org/jbpm/scheduler/def/CancelTimerAction.hbm.xml
    10:00:36,296 INFO  [HbmBinder] Mapping subclass: org.jbpm.scheduler.def.CancelTimerAction -> JBPM_ACTION
    10:00:36,298 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/exe/Comment.hbm.xml
    10:00:36,304 INFO  [HbmBinder] Mapping class: org.jbpm.graph.exe.Comment -> JBPM_COMMENT
    10:00:36,309 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/exe/ProcessInstance.hbm.xml
    10:00:36,315 INFO  [HbmBinder] Mapping class: org.jbpm.graph.exe.ProcessInstance -> JBPM_PROCESSINSTANCE
    10:00:36,328 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/exe/Token.hbm.xml
    10:00:36,334 INFO  [HbmBinder] Mapping class: org.jbpm.graph.exe.Token -> JBPM_TOKEN
    10:00:36,347 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/exe/RuntimeAction.hbm.xml
    10:00:36,352 INFO  [HbmBinder] Mapping class: org.jbpm.graph.exe.RuntimeAction -> JBPM_RUNTIMEACTION
    10:00:36,355 INFO  [Configuration] Reading mappings from resource : org/jbpm/module/exe/ModuleInstance.hbm.xml
    10:00:36,362 INFO  [HbmBinder] Mapping class: org.jbpm.module.exe.ModuleInstance -> JBPM_MODULEINSTANCE
    10:00:36,364 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/ContextInstance.hbm.xml
    10:00:36,369 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.ContextInstance -> JBPM_MODULEINSTANCE
    10:00:36,370 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/TokenVariableMap.hbm.xml
    10:00:36,375 INFO  [HbmBinder] Mapping class: org.jbpm.context.exe.TokenVariableMap -> JBPM_TOKENVARIABLEMAP
    10:00:36,383 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/VariableInstance.hbm.xml
    10:00:36,389 INFO  [HbmBinder] Mapping class: org.jbpm.context.exe.VariableInstance -> JBPM_VARIABLEINSTANCE
    10:00:36,397 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/ByteArrayInstance.hbm.xml
    10:00:36,402 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.ByteArrayInstance -> JBPM_VARIABLEINSTANCE
    10:00:36,402 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/DateInstance.hbm.xml
    10:00:36,407 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.DateInstance -> JBPM_VARIABLEINSTANCE
    10:00:36,408 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/DoubleInstance.hbm.xml
    10:00:36,415 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.DoubleInstance -> JBPM_VARIABLEINSTANCE
    10:00:36,415 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/HibernateLongInstance.hbm.xml
    10:00:36,421 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateLongInstance -> JBPM_VARIABLEINSTANCE
    10:00:36,421 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/HibernateStringInstance.hbm.xml
    10:00:36,430 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateStringInstance -> JBPM_VARIABLEINSTANCE
    10:00:36,430 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/LongInstance.hbm.xml
    10:00:36,436 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.LongInstance -> JBPM_VARIABLEINSTANCE
    10:00:36,437 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/NullInstance.hbm.xml
    10:00:36,444 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.NullInstance -> JBPM_VARIABLEINSTANCE
    10:00:36,444 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml
    10:00:36,450 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.StringInstance -> JBPM_VARIABLEINSTANCE
    10:00:36,450 INFO  [Configuration] Reading mappings from resource : org/jbpm/job/Job.hbm.xml
    10:00:36,456 INFO  [HbmBinder] Mapping class: org.jbpm.job.Job -> JBPM_JOB
    10:00:36,468 INFO  [Configuration] Reading mappings from resource : org/jbpm/job/Timer.hbm.xml
    10:00:36,473 INFO  [HbmBinder] Mapping subclass: org.jbpm.job.Timer -> JBPM_JOB
    10:00:36,480 INFO  [Configuration] Reading mappings from resource : org/jbpm/job/ExecuteNodeJob.hbm.xml
    10:00:36,485 INFO  [HbmBinder] Mapping subclass: org.jbpm.job.ExecuteNodeJob -> JBPM_JOB
    10:00:36,486 INFO  [Configuration] Reading mappings from resource : org/jbpm/job/ExecuteActionJob.hbm.xml
    10:00:36,491 INFO  [HbmBinder] Mapping subclass: org.jbpm.job.ExecuteActionJob -> JBPM_JOB
    10:00:36,493 INFO  [Configuration] Reading mappings from resource : org/jbpm/job/CleanUpProcessJob.hbm.xml
    10:00:36,498 INFO  [HbmBinder] Mapping subclass: org.jbpm.job.CleanUpProcessJob -> JBPM_JOB
    10:00:36,498 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/exe/TaskMgmtInstance.hbm.xml
    10:00:36,508 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.exe.TaskMgmtInstance -> JBPM_MODULEINSTANCE
    10:00:36,517 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml
    10:00:36,523 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.TaskInstance -> JBPM_TASKINSTANCE
    10:00:36,537 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.pooledActors -> JBPM_TASKACTORPOOL
    10:00:36,537 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/exe/PooledActor.hbm.xml
    10:00:36,544 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.PooledActor -> JBPM_POOLEDACTOR
    10:00:36,551 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.PooledActor.taskInstances -> JBPM_TASKACTORPOOL
    10:00:36,551 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/exe/SwimlaneInstance.hbm.xml
    10:00:36,557 INFO  [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.SwimlaneInstance -> JBPM_SWIMLANEINSTANCE
    10:00:36,562 INFO  [Configuration] Reading mappings from resource : org/jbpm/logging/log/ProcessLog.hbm.xml
    10:00:36,573 INFO  [HbmBinder] Mapping class: org.jbpm.logging.log.ProcessLog -> JBPM_LOG
    10:00:36,578 INFO  [Configuration] Reading mappings from resource : org/jbpm/logging/log/MessageLog.hbm.xml
    10:00:36,583 INFO  [HbmBinder] Mapping subclass: org.jbpm.logging.log.MessageLog -> JBPM_LOG
    10:00:36,584 INFO  [Configuration] Reading mappings from resource : org/jbpm/logging/log/CompositeLog.hbm.xml
    10:00:36,589 INFO  [HbmBinder] Mapping subclass: org.jbpm.logging.log.CompositeLog -> JBPM_LOG
    10:00:36,589 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/ActionLog.hbm.xml
    10:00:36,605 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.ActionLog -> JBPM_LOG
    10:00:36,605 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/NodeLog.hbm.xml
    10:00:36,612 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.NodeLog -> JBPM_LOG
    10:00:36,614 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/ProcessInstanceCreateLog.hbm.xml
    10:00:36,619 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessInstanceCreateLog -> JBPM_LOG
    10:00:36,620 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/ProcessInstanceEndLog.hbm.xml
    10:00:36,625 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessInstanceEndLog -> JBPM_LOG
    10:00:36,625 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/ProcessStateLog.hbm.xml
    10:00:36,631 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessStateLog -> JBPM_LOG
    10:00:36,631 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/SignalLog.hbm.xml
    10:00:36,636 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.SignalLog -> JBPM_LOG
    10:00:36,637 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/TokenCreateLog.hbm.xml
    10:00:36,642 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.TokenCreateLog -> JBPM_LOG
    10:00:36,643 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/TokenEndLog.hbm.xml
    10:00:36,651 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.TokenEndLog -> JBPM_LOG
    10:00:36,651 INFO  [Configuration] Reading mappings from resource : org/jbpm/graph/log/TransitionLog.hbm.xml
    10:00:36,657 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.log.TransitionLog -> JBPM_LOG
    10:00:36,658 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/VariableLog.hbm.xml
    10:00:36,667 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableLog -> JBPM_LOG
    10:00:36,668 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/VariableCreateLog.hbm.xml
    10:00:36,673 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableCreateLog -> JBPM_LOG
    10:00:36,674 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/VariableDeleteLog.hbm.xml
    10:00:36,682 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableDeleteLog -> JBPM_LOG
    10:00:36,684 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/VariableUpdateLog.hbm.xml
    10:00:36,689 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableUpdateLog -> JBPM_LOG
    10:00:36,689 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/ByteArrayUpdateLog.hbm.xml
    10:00:36,694 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.ByteArrayUpdateLog -> JBPM_LOG
    10:00:36,695 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/DateUpdateLog.hbm.xml
    10:00:36,701 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.DateUpdateLog -> JBPM_LOG
    10:00:36,701 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/DoubleUpdateLog.hbm.xml
    10:00:36,706 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.DoubleUpdateLog -> JBPM_LOG
    10:00:36,707 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/HibernateLongUpdateLog.hbm.xml
    10:00:36,712 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.HibernateLongUpdateLog -> JBPM_LOG
    10:00:36,713 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/HibernateStringUpdateLog.hbm.xml
    10:00:36,718 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.HibernateStringUpdateLog -> JBPM_LOG
    10:00:36,719 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/LongUpdateLog.hbm.xml
    10:00:36,734 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.LongUpdateLog -> JBPM_LOG
    10:00:36,734 INFO  [Configuration] Reading mappings from resource : org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml
    10:00:36,740 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.StringUpdateLog -> JBPM_LOG
    10:00:36,740 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/TaskLog.hbm.xml
    10:00:36,754 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskLog -> JBPM_LOG
    10:00:36,754 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/TaskCreateLog.hbm.xml
    10:00:36,759 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskCreateLog -> JBPM_LOG
    10:00:36,761 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/TaskAssignLog.hbm.xml
    10:00:36,767 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskAssignLog -> JBPM_LOG
    10:00:36,769 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/TaskEndLog.hbm.xml
    10:00:36,774 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskEndLog -> JBPM_LOG
    10:00:36,774 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneLog.hbm.xml
    10:00:36,780 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneLog -> JBPM_LOG
    10:00:36,780 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneCreateLog.hbm.xml
    10:00:36,785 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneCreateLog -> JBPM_LOG
    10:00:36,788 INFO  [Configuration] Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneAssignLog.hbm.xml
    10:00:36,793 INFO  [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneAssignLog -> JBPM_LOG
    10:00:36,797 INFO  [Configuration] Configured SessionFactory: null
    10:00:36,798 INFO  [HbmBinder] Mapping subclass: org.jbpm.context.def.ContextDefinition -> JBPM_MODULEDEFINITION
    10:00:36,798 INFO  [HbmBinder] Mapping subclass: org.jbpm.graph.action.MailAction -> JBPM_ACTION
    10:00:36,799 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.User.memberships -> JBPM_ID_MEMBERSHIP
    10:00:36,800 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.Group.children -> JBPM_ID_GROUP
    10:00:36,800 INFO  [HbmBinder] Mapping collection: org.jbpm.identity.Group.memberships -> JBPM_ID_MEMBERSHIP
    10:00:36,801 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.events -> JBPM_EVENT
    10:00:36,801 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
    10:00:36,801 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.nodes -> JBPM_NODE
    10:00:36,802 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.actions -> JBPM_ACTION
    10:00:36,802 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.definitions -> JBPM_MODULEDEFINITION
    10:00:36,802 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.events -> JBPM_EVENT
    10:00:36,802 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
    10:00:36,802 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.leavingTransitions -> JBPM_TRANSITION
    10:00:36,803 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.arrivingTransitions -> JBPM_TRANSITION
    10:00:36,803 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Transition.events -> JBPM_EVENT
    10:00:36,803 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Transition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
    10:00:36,803 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.Event.actions -> JBPM_ACTION
    10:00:36,803 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.SuperState.nodes -> JBPM_NODE
    10:00:36,804 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.def.ExceptionHandler.actions -> JBPM_ACTION
    10:00:36,804 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.action.Script.variableAccesses -> JBPM_VARIABLEACCESS
    10:00:36,804 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.node.ProcessState.variableAccesses -> JBPM_VARIABLEACCESS
    10:00:36,808 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.node.TaskNode.tasks -> JBPM_TASK
    10:00:36,808 INFO  [HbmBinder] Mapping collection: org.jbpm.file.def.FileDefinition.processFiles -> JBPM_BYTEARRAY
    10:00:36,808 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes -> JBPM_SWIMLANE
    10:00:36,808 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks -> JBPM_TASK
    10:00:36,809 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Swimlane.tasks -> JBPM_TASK
    10:00:36,809 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Task.events -> JBPM_EVENT
    10:00:36,809 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Task.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
    10:00:36,809 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskController.variableAccesses -> JBPM_VARIABLEACCESS
    10:00:36,809 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.exe.ProcessInstance.runtimeActions -> JBPM_RUNTIMEACTION
    10:00:36,809 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.exe.ProcessInstance.instances -> JBPM_MODULEINSTANCE
    10:00:36,809 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.exe.Token.children -> JBPM_TOKEN
    10:00:36,810 INFO  [HbmBinder] Mapping collection: org.jbpm.graph.exe.Token.comments -> JBPM_COMMENT
    10:00:36,810 INFO  [HbmBinder] Mapping collection: org.jbpm.context.exe.ContextInstance.tokenVariableMaps -> JBPM_TOKENVARIABLEMAP
    10:00:36,810 INFO  [HbmBinder] Mapping collection: org.jbpm.context.exe.TokenVariableMap.variableInstances -> JBPM_VARIABLEINSTANCE
    10:00:36,810 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.swimlaneInstances -> JBPM_SWIMLANEINSTANCE
    10:00:36,810 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.taskInstances -> JBPM_TASKINSTANCE
    10:00:36,810 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.variableInstances -> JBPM_VARIABLEINSTANCE
    10:00:36,811 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.comments -> JBPM_COMMENT
    10:00:36,811 INFO  [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.SwimlaneInstance.pooledActors -> JBPM_POOLEDACTOR
    10:00:36,811 INFO  [HbmBinder] Mapping collection: org.jbpm.logging.log.CompositeLog.children -> JBPM_LOG
    10:00:36,889 INFO  [NamingHelper] JNDI InitialContext properties:{}
    10:00:36,889 INFO  [DatasourceConnectionProvider] Using datasource: java:JbpmDS
    10:00:36,891 INFO  [SettingsFactory] RDBMS: MySQL, version: 5.0.37-community-nt
    10:00:36,891 INFO  [SettingsFactory] JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.1.22 ( Revision: ${bzr.revision-id} )
    10:00:36,915 INFO  [Dialect] Using dialect: org.hibernate.dialect.MySQL5InnoDBDialect
    10:00:36,924 INFO  [TransactionFactoryFactory] Transaction strategy: org.hibernate.transaction.JTATransactionFactory
    10:00:36,929 INFO  [NamingHelper] JNDI InitialContext properties:{}
    10:00:36,932 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
    10:00:36,935 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
    10:00:36,935 INFO  [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
    10:00:36,936 INFO  [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
    10:00:36,936 INFO  [SettingsFactory] Automatic flush during beforeCompletion(): disabled
    10:00:36,936 INFO  [SettingsFactory] Automatic session close at end of transaction: disabled
    10:00:36,936 INFO  [SettingsFactory] JDBC batch size: 15
    10:00:36,936 INFO  [SettingsFactory] JDBC batch updates for versioned data: disabled
    10:00:36,937 INFO  [SettingsFactory] Scrollable result sets: enabled
    10:00:36,937 INFO  [SettingsFactory] JDBC3 getGeneratedKeys(): enabled
    10:00:36,938 INFO  [SettingsFactory] Connection release mode: auto
    10:00:36,939 INFO  [SettingsFactory] Maximum outer join fetch depth: 2
    10:00:36,939 INFO  [SettingsFactory] Default batch fetch size: 1
    10:00:36,939 INFO  [SettingsFactory] Generate SQL with comments: enabled
    10:00:36,939 INFO  [SettingsFactory] Order SQL updates by primary key: disabled
    10:00:36,939 INFO  [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
    10:00:36,945 INFO  [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
    10:00:36,946 INFO  [SettingsFactory] Query language substitutions: {}
    10:00:36,946 INFO  [SettingsFactory] JPA-QL strict compliance: disabled
    10:00:36,946 INFO  [SettingsFactory] Second-level cache: enabled
    10:00:36,946 INFO  [SettingsFactory] Query cache: disabled
    10:00:36,947 INFO  [SettingsFactory] Cache provider: org.hibernate.cache.HashtableCacheProvider
    10:00:36,950 INFO  [SettingsFactory] Optimize cache for minimal puts: disabled
    10:00:36,950 INFO  [SettingsFactory] Structured second-level cache entries: disabled
    10:00:36,959 INFO  [SettingsFactory] Statistics: disabled
    10:00:36,959 INFO  [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
    10:00:36,959 INFO  [SettingsFactory] Default entity-mode: pojo
    10:00:36,959 INFO  [SettingsFactory] Named query checking : enabled
    10:00:37,005 INFO  [SessionFactoryImpl] building session factory
    10:00:39,119 INFO  [SessionFactoryObjectFactory] Not binding factory to JNDI, no JNDI name configured
    10:00:39,119 INFO  [NamingHelper] JNDI InitialContext properties:{}
    10:00:39,897 INFO  [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/
    10:00:40,011 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
     
    --- MBeans waiting for other MBeans ---
    ObjectName: persistence.units:jar=EJB-WF.jar,unitName=test
      State: FAILED
      Reason: java.lang.RuntimeException: You have not defined a jta-data-source for a JTA enabled persistence context named: test
      Depends On Me:
        jboss.j2ee:jar=EJB-WF.jar,name=BeanConge,service=EJB3
     
    ObjectName: jboss.j2ee:jar=EJB-WF.jar,name=BeanConge,service=EJB3
      State: NOTYETINSTALLED
      I Depend On:
        persistence.units:jar=EJB-WF.jar,unitName=test
     
    --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
    ObjectName: persistence.units:jar=EJB-WF.jar,unitName=test
      State: FAILED
      Reason: java.lang.RuntimeException: You have not defined a jta-data-source for a JTA enabled persistence context named: test
      Depends On Me:
        jboss.j2ee:jar=EJB-WF.jar,name=BeanConge,service=EJB3
     
     
    10:00:40,110 INFO  [Http11Protocol] Démarrage de Coyote HTTP/1.1 sur http-127.0.0.1-8080
    10:00:40,130 INFO  [AjpProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
    10:00:40,139 INFO  [Server] JBoss (MX MicroKernel) [4.2.0.GA (build: SVNTag=JBoss_4_2_0_GA date=200705111440)] Started in 21s:247ms

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

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

    Informations forums :
    Inscription : Novembre 2007
    Messages : 875
    Points : 2 112
    Points
    2 112
    Par défaut
    Quand la persistence fait partie d'un module EJB (c'est ton cas), il te faut créer une ressource JDBC avec un nom JNDI dans ton serveur d'application (JBOSS). Ensuite il te suffira de pointer vers le nom JNDI dans ton persistence.xml.
    Moins on code, moins il y a de bug ... et vice-versa ainsi qu'inversement ...

  8. #8
    Membre régulier
    Profil pro
    informatique
    Inscrit en
    Novembre 2009
    Messages
    167
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : informatique

    Informations forums :
    Inscription : Novembre 2009
    Messages : 167
    Points : 88
    Points
    88
    Par défaut
    Citation Envoyé par fxrobin Voir le message
    Quand la persistence fait partie d'un module EJB (c'est ton cas), il te faut créer une ressource JDBC avec un nom JNDI dans ton serveur d'application (JBOSS). Ensuite il te suffira de pointer vers le nom JNDI dans ton persistence.xml.
    pouurrais tu etre plus explicite s'il te plait ,je suis debutante dans ce domaine , porrais tu me guider vers la demarche a suivre

  9. #9
    Membre régulier
    Profil pro
    informatique
    Inscrit en
    Novembre 2009
    Messages
    167
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : informatique

    Informations forums :
    Inscription : Novembre 2009
    Messages : 167
    Points : 88
    Points
    88
    Par défaut
    Bonjour du nouveau concernant mon problème;
    j'ai suivi ce qu'a dis fxrobin , en suivant ce tutoriel
    http://www.objis.com/formation-java/...atasource.html
    ma tables Conge est bien mappé au niveau de MySql ,le problème maintenant c'est ce que ce n'est pas la seule table qui est mappé , j'utilise une autre base de données nommé " JBPMDB" et toute ses tables sont mappé dans ma nouvelle base de données , (celle ou je veux mettre uniquement Conge et d'autre ).
    comment réglé ce problème.
    merci

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 0
    Dernier message: 20/08/2012, 14h26
  2. Réponses: 2
    Dernier message: 18/09/2007, 14h12
  3. Demande d'aide sur la liaison avec base de données mysql
    Par almora007 dans le forum Windows Forms
    Réponses: 2
    Dernier message: 06/08/2007, 14h19
  4. Réponses: 1
    Dernier message: 19/07/2007, 21h09
  5. Problème de connexion à une base de donnée MySQL
    Par casho dans le forum VB 6 et antérieur
    Réponses: 2
    Dernier message: 27/06/2007, 14h04

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