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

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

JSF Java Discussion :

JSF & Hibernate


Sujet :

JSF Java

  1. #1
    Membre éclairé
    Femme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Février 2007
    Messages
    346
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Aveyron (Midi Pyrénées)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2007
    Messages : 346
    Par défaut JSF & Hibernate
    Bonjour,
    Je veux faire une application JAVA/J2EE avec Hibernate et JSF au début j ai fait une petite application avec JSF mais quand j intègre Hibernate quand je veux exécuter ma page web, m a affiché des bug (image : bugjsf)
    Et voici le code de mon web.XML
    Code
    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
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4"
    	xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
     
      <display-name>JSF Application</display-name>
      <description>Exemple JSF</description>
     
      <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>server</param-value>
      </context-param>
     
      <context-param>
        <param-name>javax.faces.CONFIG_FILES</param-name>
        <param-value>/WEB-INF/faces-config.xml</param-value>
      </context-param>
     
      <!-- Faces Servlet -->
      <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup> 1 </load-on-startup>
      </servlet>
     
      <!-- Faces Servlet Mapping -->
      <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.faces</url-pattern>
      </servlet-mapping>
     
     
      	<welcome-file-list>
    		<welcome-file>Accueil.faces</welcome-file>	
    	</welcome-file-list>
     
    </web-app>
    code

    et le code de mon faces-config

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    <?xml version="1.0"?>
    <!DOCTYPE faces-config PUBLIC
      "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
      "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
     
    <faces-config>
      	<managed-bean>
    		<managed-bean-name>traitement</managed-bean-name>
    		<managed-bean-class>Traitement.traitement</managed-bean-class>
    		<managed-bean-scope>session</managed-bean-scope>
    	</managed-bean>
    </faces-config>
    Et le code de ma page d accueil

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
      <head>  
        <title>Debut</title>
      </head>
    <body>
    	<jsp:forward page="index.faces"></jsp:forward>
    	</body>
    </html>
    et le code de ma page index.jsf

    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
     
    16:06:40,238 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/property-extension'.
    16:06:40,238 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,238 DEBUG sax:1195 - ignorableWhitespace(
        )
    16:06:40,238 DEBUG sax:1072 - endElement(,,property)
    16:06:40,238 DEBUG Digester:1075 -   match='faces-config/component/property'
    16:06:40,238 DEBUG Digester:1076 -   bodyText=''
    16:06:40,238 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property'.
    16:06:40,238 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,238 DEBUG sax:1195 - ignorableWhitespace(
     
        )
    16:06:40,238 DEBUG sax:1318 - startElement(,,property)
    16:06:40,238 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,238 DEBUG Digester:1344 -   New match='faces-config/component/property'
    16:06:40,238 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property'.
    16:06:40,238 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,238 DEBUG sax:1318 - startElement(,,description)
    16:06:40,238 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,238 DEBUG Digester:1344 -   New match='faces-config/component/property/description'
    16:06:40,238 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/description'.
    16:06:40,254 DEBUG sax:1002 - characters(
            Absolute or relative URL of the image)
    16:06:40,254 DEBUG sax:1002 - characters(
            to be displayed for this button.  If)
    16:06:40,254 DEBUG sax:1002 - characters(
            specified, this "input" element will be)
    16:06:40,254 DEBUG sax:1002 - characters(
            of type "image".  Otherwise, it will be)
    16:06:40,254 DEBUG sax:1002 - characters(
            of the type specified by the "type")
    16:06:40,254 DEBUG sax:1002 - characters(
            property with a label specified by the)
    16:06:40,254 DEBUG sax:1002 - characters(
            "value" property.)
    16:06:40,254 DEBUG sax:1002 - characters(
          )
    16:06:40,254 DEBUG sax:1072 - endElement(,,description)
    16:06:40,254 DEBUG Digester:1075 -   match='faces-config/component/property/description'
    16:06:40,254 DEBUG Digester:1076 -   bodyText='
            Absolute or relative URL of the image
            to be displayed for this button.  If
            specified, this "input" element will be
            of type "image".  Otherwise, it will be
            of the type specified by the "type"
            property with a label specified by the
            "value" property.
          '
    16:06:40,254 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/description'.
    16:06:40,254 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,254 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,254 DEBUG sax:1318 - startElement(,,display-name)
    16:06:40,254 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,254 DEBUG Digester:1344 -   New match='faces-config/component/property/display-name'
    16:06:40,254 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/display-name'.
    16:06:40,254 DEBUG sax:1002 - characters(Image URL)
    16:06:40,254 DEBUG sax:1072 - endElement(,,display-name)
    16:06:40,254 DEBUG Digester:1075 -   match='faces-config/component/property/display-name'
    16:06:40,254 DEBUG Digester:1076 -   bodyText='Image URL'
    16:06:40,254 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/display-name'.
    16:06:40,254 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,254 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,254 DEBUG sax:1318 - startElement(,,icon)
    16:06:40,254 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,254 DEBUG Digester:1344 -   New match='faces-config/component/property/icon'
    16:06:40,254 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/icon'.
    16:06:40,254 DEBUG sax:1072 - endElement(,,icon)
    16:06:40,254 DEBUG Digester:1075 -   match='faces-config/component/property/icon'
    16:06:40,254 DEBUG Digester:1076 -   bodyText=''
    16:06:40,254 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/icon'.
    16:06:40,254 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,254 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,254 DEBUG sax:1318 - startElement(,,property-name)
    16:06:40,254 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,254 DEBUG Digester:1344 -   New match='faces-config/component/property/property-name'
    16:06:40,254 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/property-name'.
    16:06:40,254 DEBUG sax:1002 - characters(image)
    16:06:40,254 DEBUG sax:1072 - endElement(,,property-name)
    16:06:40,254 DEBUG Digester:1075 -   match='faces-config/component/property/property-name'
    16:06:40,254 DEBUG Digester:1076 -   bodyText='image'
    16:06:40,254 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/property-name'.
    16:06:40,254 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,254 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,254 DEBUG sax:1318 - startElement(,,property-class)
    16:06:40,254 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,254 DEBUG Digester:1344 -   New match='faces-config/component/property/property-class'
    16:06:40,254 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/property-class'.
    16:06:40,270 DEBUG sax:1002 - characters(java.lang.String)
    16:06:40,270 DEBUG sax:1072 - endElement(,,property-class)
    16:06:40,270 DEBUG Digester:1075 -   match='faces-config/component/property/property-class'
    16:06:40,270 DEBUG Digester:1076 -   bodyText='java.lang.String'
    16:06:40,270 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/property-class'.
    16:06:40,270 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,270 DEBUG sax:1195 - ignorableWhitespace(
        )
    16:06:40,270 DEBUG sax:1072 - endElement(,,property)
    16:06:40,270 DEBUG Digester:1075 -   match='faces-config/component/property'
    16:06:40,270 DEBUG Digester:1076 -   bodyText=''
    16:06:40,270 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property'.
    16:06:40,270 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,270 DEBUG sax:1195 - ignorableWhitespace(
     
        )
    16:06:40,270 DEBUG sax:1318 - startElement(,,property)
    16:06:40,270 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,270 DEBUG Digester:1344 -   New match='faces-config/component/property'
    16:06:40,270 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property'.
    16:06:40,270 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,270 DEBUG sax:1318 - startElement(,,description)
    16:06:40,270 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,270 DEBUG Digester:1344 -   New match='faces-config/component/property/description'
    16:06:40,270 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/description'.
    16:06:40,270 DEBUG sax:1002 - characters(
             Type of button to create.  Valid values are "submit" and)
    16:06:40,270 DEBUG sax:1002 - characters(
             "reset".  If not specified, or not a valid value, the default)
    16:06:40,270 DEBUG sax:1002 - characters(
             value is "submit".)
    16:06:40,270 DEBUG sax:1002 - characters(
          )
    16:06:40,270 DEBUG sax:1072 - endElement(,,description)
    16:06:40,270 DEBUG Digester:1075 -   match='faces-config/component/property/description'
    16:06:40,270 DEBUG Digester:1076 -   bodyText='
             Type of button to create.  Valid values are "submit" and
             "reset".  If not specified, or not a valid value, the default
             value is "submit".
          '
    16:06:40,270 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/description'.
    16:06:40,270 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,270 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,270 DEBUG sax:1318 - startElement(,,display-name)
    16:06:40,270 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,270 DEBUG Digester:1344 -   New match='faces-config/component/property/display-name'
    16:06:40,270 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/display-name'.
    16:06:40,270 DEBUG sax:1002 - characters(Button Type)
    16:06:40,270 DEBUG sax:1072 - endElement(,,display-name)
    16:06:40,270 DEBUG Digester:1075 -   match='faces-config/component/property/display-name'
    16:06:40,270 DEBUG Digester:1076 -   bodyText='Button Type'
    16:06:40,270 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/display-name'.
    16:06:40,270 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,270 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,270 DEBUG sax:1318 - startElement(,,icon)
    16:06:40,270 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,270 DEBUG Digester:1344 -   New match='faces-config/component/property/icon'
    16:06:40,270 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/icon'.
    16:06:40,270 DEBUG sax:1072 - endElement(,,icon)
    16:06:40,270 DEBUG Digester:1075 -   match='faces-config/component/property/icon'
    16:06:40,270 DEBUG Digester:1076 -   bodyText=''
    16:06:40,270 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/icon'.
    16:06:40,285 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,285 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,285 DEBUG sax:1318 - startElement(,,property-name)
    16:06:40,285 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,285 DEBUG Digester:1344 -   New match='faces-config/component/property/property-name'
    16:06:40,285 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/property-name'.
    16:06:40,285 DEBUG sax:1002 - characters(type)
    16:06:40,285 DEBUG sax:1072 - endElement(,,property-name)
    16:06:40,285 DEBUG Digester:1075 -   match='faces-config/component/property/property-name'
    16:06:40,285 DEBUG Digester:1076 -   bodyText='type'
    16:06:40,285 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/property-name'.
    16:06:40,285 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,285 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,285 DEBUG sax:1318 - startElement(,,property-class)
    16:06:40,285 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,285 DEBUG Digester:1344 -   New match='faces-config/component/property/property-class'
    16:06:40,285 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/property-class'.
    16:06:40,285 DEBUG sax:1002 - characters(java.lang.String)
    16:06:40,285 DEBUG sax:1072 - endElement(,,property-class)
    16:06:40,285 DEBUG Digester:1075 -   match='faces-config/component/property/property-class'
    16:06:40,285 DEBUG Digester:1076 -   bodyText='java.lang.String'
    16:06:40,285 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/property-class'.
    16:06:40,285 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,285 DEBUG sax:1195 - ignorableWhitespace(
          )
    16:06:40,285 DEBUG sax:1318 - startElement(,,property-extension)
    16:06:40,285 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,285 DEBUG Digester:1344 -   New match='faces-config/component/property/property-extension'
    16:06:40,285 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/property-extension'.
    16:06:40,285 DEBUG sax:1002 - characters(
            )
    16:06:40,285 DEBUG sax:1318 - startElement(,,default-value)
    16:06:40,285 DEBUG Digester:1325 -   Pushing body text '
            '
    16:06:40,285 DEBUG Digester:1344 -   New match='faces-config/component/property/property-extension/default-value'
    16:06:40,285 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/property-extension/default-value'.
    16:06:40,285 DEBUG sax:1002 - characters("submit")
    16:06:40,285 DEBUG sax:1072 - endElement(,,default-value)
    16:06:40,285 DEBUG Digester:1075 -   match='faces-config/component/property/property-extension/default-value'
    16:06:40,285 DEBUG Digester:1076 -   bodyText='"submit"'
    16:06:40,285 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/property-extension/default-value'.
    16:06:40,285 DEBUG Digester:1118 -   Popping body text '
            '
    16:06:40,285 DEBUG sax:1002 - characters(
          )
    16:06:40,285 DEBUG sax:1072 - endElement(,,property-extension)
    16:06:40,285 DEBUG Digester:1075 -   match='faces-config/component/property/property-extension'
    16:06:40,285 DEBUG Digester:1076 -   bodyText='
     
          '
    16:06:40,285 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/property-extension'.
    16:06:40,285 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,285 DEBUG sax:1195 - ignorableWhitespace(
        )
    16:06:40,285 DEBUG sax:1072 - endElement(,,property)
    16:06:40,285 DEBUG Digester:1075 -   match='faces-config/component/property'
    16:06:40,285 DEBUG Digester:1076 -   bodyText=''
    16:06:40,301 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property'.
    16:06:40,301 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,301 DEBUG sax:1195 - ignorableWhitespace(
    )
    16:06:40,301 DEBUG sax:1195 - ignorableWhitespace(
    )
    16:06:40,301 DEBUG sax:1195 - ignorableWhitespace(
     
        )
    16:06:40,301 DEBUG sax:1318 - startElement(,,component-extension)
    16:06:40,301 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,301 DEBUG Digester:1344 -   New match='faces-config/component/component-extension'
    16:06:40,301 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/component-extension'.
    16:06:40,301 DEBUG sax:1002 - characters(
          )
    16:06:40,301 DEBUG sax:1318 - startElement(,,base-component-type)
    16:06:40,301 DEBUG Digester:1325 -   Pushing body text '
          '
    16:06:40,301 DEBUG Digester:1344 -   New match='faces-config/component/component-extension/base-component-type'
    16:06:40,301 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/component-extension/base-component-type'.
    16:06:40,301 DEBUG sax:1002 - characters(javax.faces.Command)
    16:06:40,301 DEBUG sax:1072 - endElement(,,base-component-type)
    16:06:40,301 DEBUG Digester:1075 -   match='faces-config/component/component-extension/base-component-type'
    16:06:40,301 DEBUG Digester:1076 -   bodyText='javax.faces.Command'
    16:06:40,301 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/component-extension/base-component-type'.
    16:06:40,301 DEBUG Digester:1118 -   Popping body text '
          '
    16:06:40,301 DEBUG sax:1002 - characters(
          )
    16:06:40,301 DEBUG sax:1318 - startElement(,,renderer-type)
    16:06:40,301 DEBUG Digester:1325 -   Pushing body text '
     
          '
    16:06:40,301 DEBUG Digester:1344 -   New match='faces-config/component/component-extension/renderer-type'
    16:06:40,301 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/component-extension/renderer-type'.
    16:06:40,301 DEBUG sax:1002 - characters(javax.faces.Button)
    16:06:40,301 DEBUG sax:1072 - endElement(,,renderer-type)
    16:06:40,301 DEBUG Digester:1075 -   match='faces-config/component/component-extension/renderer-type'
    16:06:40,301 DEBUG Digester:1076 -   bodyText='javax.faces.Button'
    16:06:40,301 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/component-extension/renderer-type'.
    16:06:40,301 DEBUG Digester:1118 -   Popping body text '
     
          '
    16:06:40,301 DEBUG sax:1002 - characters(
        )
    16:06:40,301 DEBUG sax:1072 - endElement(,,component-extension)
    16:06:40,301 DEBUG Digester:1075 -   match='faces-config/component/component-extension'
    16:06:40,301 DEBUG Digester:1076 -   bodyText='
     
     
        '
    16:06:40,301 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/component-extension'.
    16:06:40,301 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,301 DEBUG sax:1195 - ignorableWhitespace(
     
      )
    16:06:40,301 DEBUG sax:1072 - endElement(,,component)
    16:06:40,301 DEBUG Digester:1075 -   match='faces-config/component'
    16:06:40,301 DEBUG Digester:1076 -   bodyText=''
    16:06:40,317 DEBUG Digester:1098 -   Fire body() for ComponentRule[className=com.sun.faces.config.beans.ComponentBean]
    16:06:40,317 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,317 DEBUG Digester:1128 -   Fire end() for ComponentRule[className=com.sun.faces.config.beans.ComponentBean]
    16:06:40,317 DEBUG Digester:111 - [ComponentRule]{faces-config/component} New(javax.faces.HtmlCommandButton)
    16:06:40,317 DEBUG FacesConfigBean:60 - addComponent(javax.faces.HtmlCommandButton)
    16:06:40,317 DEBUG sax:1195 - ignorableWhitespace(
     
      )
    16:06:40,317 DEBUG sax:1318 - startElement(,,component)
    16:06:40,317 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,317 DEBUG Digester:1344 -   New match='faces-config/component'
    16:06:40,317 DEBUG Digester:1359 -   Fire begin() for ComponentRule[className=com.sun.faces.config.beans.ComponentBean]
    16:06:40,317 DEBUG Digester:58 - [ComponentRule]{faces-config/component} Push com.sun.faces.config.beans.ComponentBean
    16:06:40,317 DEBUG sax:1195 - ignorableWhitespace(
     
        )
    16:06:40,317 DEBUG sax:1318 - startElement(,,description)
    16:06:40,317 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,317 DEBUG Digester:1344 -   New match='faces-config/component/description'
    16:06:40,317 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/description'.
    16:06:40,317 DEBUG sax:1002 - characters(
          )
    16:06:40,317 DEBUG sax:1318 - startElement(,,p)
    16:06:40,317 DEBUG Digester:1325 -   Pushing body text '
          '
    16:06:40,317 DEBUG Digester:1344 -   New match='faces-config/component/description/p'
    16:06:40,317 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/description/p'.
    16:06:40,317 DEBUG sax:1002 - characters(Represents an HTML )
    16:06:40,317 DEBUG sax:1318 - startElement(,,code)
    16:06:40,317 DEBUG Digester:1325 -   Pushing body text 'Represents an HTML '
    16:06:40,317 DEBUG Digester:1344 -   New match='faces-config/component/description/p/code'
    16:06:40,317 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/description/p/code'.
    16:06:40,317 DEBUG sax:1002 - characters(a)
    16:06:40,317 DEBUG sax:1072 - endElement(,,code)
    16:06:40,317 DEBUG Digester:1075 -   match='faces-config/component/description/p/code'
    16:06:40,317 DEBUG Digester:1076 -   bodyText='a'
    16:06:40,317 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/description/p/code'.
    16:06:40,317 DEBUG Digester:1118 -   Popping body text 'Represents an HTML '
    16:06:40,317 DEBUG sax:1002 - characters( element for a hyperlink that acts)
    16:06:40,317 DEBUG sax:1002 - characters(
          like a submit button.  This component must be placed inside)
    16:06:40,317 DEBUG sax:1002 - characters(
          a form, and requires JavaScript to be enabled in the client.)
    16:06:40,317 DEBUG sax:1072 - endElement(,,p)
    16:06:40,317 DEBUG Digester:1075 -   match='faces-config/component/description/p'
    16:06:40,317 DEBUG Digester:1076 -   bodyText='Represents an HTML  element for a hyperlink that acts
          like a submit button.  This component must be placed inside
          a form, and requires JavaScript to be enabled in the client.'
    16:06:40,317 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/description/p'.
    16:06:40,317 DEBUG Digester:1118 -   Popping body text '
          '
    16:06:40,317 DEBUG sax:1002 - characters(
        )
    16:06:40,332 DEBUG sax:1072 - endElement(,,description)
    16:06:40,332 DEBUG Digester:1075 -   match='faces-config/component/description'
    16:06:40,332 DEBUG Digester:1076 -   bodyText='
     
        '
    16:06:40,332 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/description'.
    16:06:40,332 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,332 DEBUG sax:1195 - ignorableWhitespace(
        )
    16:06:40,332 DEBUG sax:1318 - startElement(,,display-name)
    16:06:40,332 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,332 DEBUG Digester:1344 -   New match='faces-config/component/display-name'
    16:06:40,332 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/display-name'.
    16:06:40,332 DEBUG sax:1002 - characters(Command Hyperlink)
    16:06:40,332 DEBUG sax:1072 - endElement(,,display-name)
    16:06:40,332 DEBUG Digester:1075 -   match='faces-config/component/display-name'
    16:06:40,332 DEBUG Digester:1076 -   bodyText='Command Hyperlink'
    16:06:40,332 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/display-name'.
    16:06:40,332 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,332 DEBUG sax:1195 - ignorableWhitespace(
        )
    16:06:40,332 DEBUG sax:1318 - startElement(,,component-type)
    16:06:40,332 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,332 DEBUG Digester:1344 -   New match='faces-config/component/component-type'
    16:06:40,332 DEBUG Digester:1359 -   Fire begin() for CallMethodRule[methodName=setComponentType, paramCount=0, paramTypes={java.lang.String}]
    16:06:40,332 DEBUG sax:1002 - characters(javax.faces.HtmlCommandLink)
    16:06:40,332 DEBUG sax:1072 - endElement(,,component-type)
    16:06:40,332 DEBUG Digester:1075 -   match='faces-config/component/component-type'
    16:06:40,332 DEBUG Digester:1076 -   bodyText='javax.faces.HtmlCommandLink'
    16:06:40,332 DEBUG Digester:1098 -   Fire body() for CallMethodRule[methodName=setComponentType, paramCount=0, paramTypes={java.lang.String}]
    16:06:40,332 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,332 DEBUG Digester:1128 -   Fire end() for CallMethodRule[methodName=setComponentType, paramCount=0, paramTypes={java.lang.String}]
    16:06:40,332 DEBUG Digester:614 - [CallMethodRule]{faces-config/component/component-type} Call com.sun.faces.config.beans.ComponentBean.setComponentType(javax.faces.HtmlCommandLink/java.lang.String)
    16:06:40,332 DEBUG MethodUtils:522 - Matching name=setComponentType on class com.sun.faces.config.beans.ComponentBean
    16:06:40,332 DEBUG MethodUtils:537 - Found straight match: public void com.sun.faces.config.beans.ComponentBean.setComponentType(java.lang.String)
    16:06:40,332 DEBUG MethodUtils:538 - isPublic:true
    16:06:40,332 DEBUG sax:1195 - ignorableWhitespace(
        )
    16:06:40,332 DEBUG sax:1318 - startElement(,,component-class)
    16:06:40,332 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,332 DEBUG Digester:1344 -   New match='faces-config/component/component-class'
    16:06:40,332 DEBUG Digester:1359 -   Fire begin() for CallMethodRule[methodName=setComponentClass, paramCount=0, paramTypes={java.lang.String}]
    16:06:40,332 DEBUG sax:1002 - characters(javax.faces.component.html.HtmlCommandLink)
    16:06:40,332 DEBUG sax:1072 - endElement(,,component-class)
    16:06:40,332 DEBUG Digester:1075 -   match='faces-config/component/component-class'
    16:06:40,332 DEBUG Digester:1076 -   bodyText='javax.faces.component.html.HtmlCommandLink'
    16:06:40,332 DEBUG Digester:1098 -   Fire body() for CallMethodRule[methodName=setComponentClass, paramCount=0, paramTypes={java.lang.String}]
    16:06:40,332 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,332 DEBUG Digester:1128 -   Fire end() for CallMethodRule[methodName=setComponentClass, paramCount=0, paramTypes={java.lang.String}]
    16:06:40,332 DEBUG Digester:614 - [CallMethodRule]{faces-config/component/component-class} Call com.sun.faces.config.beans.ComponentBean.setComponentClass(javax.faces.component.html.HtmlCommandLink/java.lang.String)
    16:06:40,332 DEBUG MethodUtils:522 - Matching name=setComponentClass on class com.sun.faces.config.beans.ComponentBean
    16:06:40,332 DEBUG MethodUtils:537 - Found straight match: public void com.sun.faces.config.beans.ComponentBean.setComponentClass(java.lang.String)
    16:06:40,332 DEBUG MethodUtils:538 - isPublic:true
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
     
        )
    16:06:40,348 DEBUG sax:1478 - resolveEntity('null', 'jar:file:/C:/WorkspaceChaoui/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/projet26/WEB-INF/lib/jsf-impl.jar!/com/sun/faces/uicommand-props.xml')
    16:06:40,348 DEBUG Digester:1506 -  Trying to resolve using system ID 'jar:file:/C:/WorkspaceChaoui/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/projet26/WEB-INF/lib/jsf-impl.jar!/com/sun/faces/uicommand-props.xml'
    16:06:40,348 DEBUG Digester:1514 -  Resolving to alternate DTD 'jar:file:/C:/WorkspaceChaoui/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/projet26/WEB-INF/lib/jsf-impl.jar!/com/sun/faces/uicommand-props.xml'
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
     
    )
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
     
    )
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
     
     
    )
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
     
          )
    16:06:40,348 DEBUG sax:1478 - resolveEntity('null', 'jar:file:/C:/WorkspaceChaoui/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/projet26/WEB-INF/lib/jsf-impl.jar!/com/sun/faces/uicomponent-props.xml')
    16:06:40,348 DEBUG Digester:1506 -  Trying to resolve using system ID 'jar:file:/C:/WorkspaceChaoui/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/projet26/WEB-INF/lib/jsf-impl.jar!/com/sun/faces/uicomponent-props.xml'
    16:06:40,348 DEBUG Digester:1514 -  Resolving to alternate DTD 'jar:file:/C:/WorkspaceChaoui/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/projet26/WEB-INF/lib/jsf-impl.jar!/com/sun/faces/uicomponent-props.xml'
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
     
    )
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
     
    )
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
     
     
    )
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
     
          )
    16:06:40,348 DEBUG sax:1318 - startElement(,,property)
    16:06:40,348 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,348 DEBUG Digester:1344 -   New match='faces-config/component/property'
    16:06:40,348 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property'.
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
            )
    16:06:40,348 DEBUG sax:1318 - startElement(,,description)
    16:06:40,348 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,348 DEBUG Digester:1344 -   New match='faces-config/component/property/description'
    16:06:40,348 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/description'.
    16:06:40,348 DEBUG sax:1002 - characters(
              A mutable Map of the attributes associated with)
    16:06:40,348 DEBUG sax:1002 - characters(
              this component, keyed by attribute name.)
    16:06:40,348 DEBUG sax:1002 - characters(
            )
    16:06:40,348 DEBUG sax:1072 - endElement(,,description)
    16:06:40,348 DEBUG Digester:1075 -   match='faces-config/component/property/description'
    16:06:40,348 DEBUG Digester:1076 -   bodyText='
              A mutable Map of the attributes associated with
              this component, keyed by attribute name.
            '
    16:06:40,348 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/description'.
    16:06:40,348 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
            )
    16:06:40,348 DEBUG sax:1318 - startElement(,,display-name)
    16:06:40,348 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,348 DEBUG Digester:1344 -   New match='faces-config/component/property/display-name'
    16:06:40,348 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/display-name'.
    16:06:40,348 DEBUG sax:1002 - characters(Attributes Map)
    16:06:40,348 DEBUG sax:1072 - endElement(,,display-name)
    16:06:40,348 DEBUG Digester:1075 -   match='faces-config/component/property/display-name'
    16:06:40,348 DEBUG Digester:1076 -   bodyText='Attributes Map'
    16:06:40,348 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/display-name'.
    16:06:40,348 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,348 DEBUG sax:1195 - ignorableWhitespace(
            )
    16:06:40,348 DEBUG sax:1318 - startElement(,,icon)
    16:06:40,348 DEBUG Digester:1325 -   Pushing body text ''
    16:06:40,363 DEBUG Digester:1344 -   New match='faces-config/component/property/icon'
    16:06:40,363 DEBUG Digester:1372 -   No rules found matching 'faces-config/component/property/icon'.
    16:06:40,363 DEBUG sax:1072 - endElement(,,icon)
    16:06:40,363 DEBUG Digester:1075 -   match='faces-config/component/property/icon'
    16:06:40,363 DEBUG Digester:1076 -   bodyText=''
    16:06:40,363 DEBUG Digester:1111 -   No rules found matching 'faces-config/component/property/icon'.
    16:06:40,363 DEBUG Digester:1118 -   Popping body text ''
    16:06:40,363 DEBUG sax:1195 - ignorableWhitespace(
            )
    et apres un message :
    Server Tomcat v5.5 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor.

    merci d avance

  2. #2
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 45
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Par défaut
    essaye d'éviter de mettre le level debug a la racine de jsf tu logs tout les packages qui constituent le projet ce qui fait que tomcat ne démarre pas dans le temps qui lui est défini

  3. #3
    Membre éclairé
    Femme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Février 2007
    Messages
    346
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Aveyron (Midi Pyrénées)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2007
    Messages : 346
    Par défaut
    Vous avez raison ça marche maintenant chez moi merci

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

Discussions similaires

  1. configurer jsf et hibernate sous tomcat6
    Par info_plus dans le forum JSF
    Réponses: 5
    Dernier message: 10/04/2008, 11h01
  2. Réponses: 7
    Dernier message: 24/10/2007, 18h44
  3. JSF et Hibernate
    Par mercure321 dans le forum JSF
    Réponses: 2
    Dernier message: 15/10/2007, 08h39
  4. jsf et hibernate
    Par Johana dans le forum JSF
    Réponses: 5
    Dernier message: 09/08/2007, 16h12
  5. [JSF-SPRING-HIBERNATE] Freeze . .
    Par gondek dans le forum JSF
    Réponses: 5
    Dernier message: 04/09/2006, 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