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 :

web.xml : url-pattern non reconnu


Sujet :

JSF Java

  1. #1
    Membre émérite
    Avatar de Cafeinoman
    Homme Profil pro
    Couteau suisse d'une PME
    Inscrit en
    Octobre 2012
    Messages
    628
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Couteau suisse d'une PME

    Informations forums :
    Inscription : Octobre 2012
    Messages : 628
    Par défaut web.xml : url-pattern non reconnu
    Bonjour à tous,

    j'ai un petit problème avec la configuration d'un projet (WebApp Jboss avec JPA, MAVEN, JSF). Le fichier web.xml m'annonce une erreur dont je ne comprend par la provenance :

    cvc-complex-type.2.4.a: Invalid content was found starting with element 'URL-pattern'. One of '{"http://java.sun.com/xml/ns/javaee":url-pattern}' is expected.

    J'ai modifié le pom.xml pour inclure les jar jsf-api et jsf-impl, qui sont bien dans le dépôt local de Maven. Je pense que c'est un problème de taglib, mais je ne voit pas pourquoi...

    Mon web.xml :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
     
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="3.0" 
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
    http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    	<display-name>AssGest</display-name>
    	<description>Application de gestion d'association</description>
    	<context-param>
    		<param-name>javax.faces.PROJECT_STAGE</param-name>
    		<param-value>Development</param-value>
    	</context-param>
    	<context-param>
    		<param-name>org.jboss.jbossfaces.WAR_BUNDLES_JSF_IMPL</param-name>
    		<param-value>true</param-value>
    	</context-param>
    	<context-param>
    		<param-name>org.jboss.jbossfaces.WAR_BUNDLES_JSF</param-name>
    		<param-value>true</param-value>
    	</context-param>
    	<servlet>
    		<servlet-name>Faces Servlet</servlet-name>
    		<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    		<load-on-startup>1</load-on-startup>
    	</servlet>
    	<servlet-mapping>
    		<servlet-name>Faces Servlet</servlet-name>
    		<URL-pattern>"/faces/*"</URL-pattern>
    	</servlet-mapping>
    	<session-config>
    		<session-timeout>
    			30
    		</session-timeout>
    	</session-config>
    	<welcome-file-list>
    		<welcome-file>/faces/index.xhtml</welcome-file>
    	</welcome-file-list>
    </web-app>
    et le pom.xml

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    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
     
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
        <modelVersion>4.0.0</modelVersion>
     
        <groupId>fr.francois.AssGest</groupId>
        <artifactId>AssGestWeb</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <packaging>war</packaging>
        <name>AssGest</name>
        <description>A starter Java EE 6 webapp project for use on JBoss AS 7.1 / EAP 6, generated from the jboss-javaee6-webapp archetype</description>
     
        <properties>
            <!-- Explicitly declaring the source encoding eliminates the following 
                message: -->
            <!-- [WARNING] Using platform encoding (UTF-8 actually) to copy filtered 
                resources, i.e. build is platform dependent! -->
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <!-- Define the version of JBoss' Java EE 6 APIs and Tools we want 
                to import. -->
            <jboss.bom.version>1.0.2.Final</jboss.bom.version>
            <!-- Alternatively, comment out the above line, and un-comment the 
                line below to use version 1.0.2.Final-redhat-1 which is a release certified 
                to work with JBoss EAP 6. It requires you have access to the JBoss EAP 6 
                maven repository. -->
            <!-- <jboss.bom.version>1.0.2.Final-redhat-1</jboss.bom.version>> -->
        </properties>
     
     
        <dependencyManagement>
            <dependencies>
                <!-- JBoss distributes a complete set of Java EE 6 APIs including 
                    a Bill of Materials (BOM). A BOM specifies the versions of a "stack" (or 
                    a collection) of artifacts. We use this here so that we always get the correct 
                    versions of artifacts. Here we use the jboss-javaee-6.0-with-tools stack 
                    (you can read this as the JBoss stack of the Java EE 6 APIs, with some extras 
                    tools for your project, such as Arquillian for testing) and the jboss-javaee-6.0-with-hibernate 
                    stack you can read this as the JBoss stack of the Java EE 6 APIs, with extras 
                    from the Hibernate family of projects) -->
                <dependency>
                    <groupId>org.jboss.bom</groupId>
                    <artifactId>jboss-javaee-6.0-with-tools</artifactId>
                    <version>${jboss.bom.version}</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
                <dependency>
                    <groupId>org.jboss.bom</groupId>
                    <artifactId>jboss-javaee-6.0-with-hibernate</artifactId>
                    <version>${jboss.bom.version}</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
                <dependency>
                	<groupId>javax.faces</groupId>
                	<artifactId>javax.faces-api</artifactId>
                	<version>2.1</version>
                </dependency>
            </dependencies>
        </dependencyManagement>
     
        <dependencies>
     
            <!-- First declare the APIs we depend on and need for compilation. 
                All of them are provided by JBoss AS 7 -->
     
            <!-- Import the CDI API, we use provided scope as the API is included 
                in JBoss AS 7 -->
            <dependency>
                <groupId>javax.enterprise</groupId>
                <artifactId>cdi-api</artifactId>
                <scope>provided</scope>
            </dependency>
     
            <!-- Import the Common Annotations API (JSR-250), we use provided 
                scope as the API is included in JBoss AS 7 -->
            <dependency>
                <groupId>org.jboss.spec.javax.annotation</groupId>
                <artifactId>jboss-annotations-api_1.1_spec</artifactId>
                <scope>provided</scope>
            </dependency>
     
            <!-- Import the JAX-RS API, we use provided scope as the API is included 
                in JBoss AS 7 -->
            <dependency>
                <groupId>org.jboss.spec.javax.ws.rs</groupId>
                <artifactId>jboss-jaxrs-api_1.1_spec</artifactId>
                <scope>provided</scope>
            </dependency>
     
            <!-- Import the JPA API, we use provided scope as the API is included 
                in JBoss AS 7 -->
            <dependency>
                <groupId>org.hibernate.javax.persistence</groupId>
                <artifactId>hibernate-jpa-2.0-api</artifactId>
                <scope>provided</scope>
            </dependency>
     
            <!-- Import the EJB API, we use provided scope as the API is included 
                in JBoss AS 7 -->
            <dependency>
                <groupId>org.jboss.spec.javax.ejb</groupId>
                <artifactId>jboss-ejb-api_3.1_spec</artifactId>
                <scope>provided</scope>
            </dependency>
     
            <!-- JSR-303 (Bean Validation) Implementation -->
            <!-- Provides portable constraints such as @Email -->
            <!-- Hibernate Validator is shipped in JBoss AS 7 -->
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-validator</artifactId>
                <scope>provided</scope>
                <exclusions>
                    <exclusion>
                        <groupId>org.slf4j</groupId>
                        <artifactId>slf4j-api</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>
     
            <!-- Import the JSF API, we use provided scope as the API is included 
                in JBoss AS 7 -->
            <dependency>
                <groupId>org.jboss.spec.javax.faces</groupId>
                <artifactId>jboss-jsf-api_2.1_spec</artifactId>
                <scope>provided</scope>
            </dependency>
     
            <!-- Now we declare any tools needed -->
     
    		<dependency>
    			<groupId>javax.faces</groupId>
    			<artifactId>jsf-api</artifactId>
    			<version>2.1</version>
    		</dependency>
     
    		<dependency>
    			<groupId>javax.faces</groupId>
    			<artifactId>jsf-impl</artifactId>
    			<version>1.2_15</version>
    		</dependency>
     
            <!-- Annotation processor to generate the JPA 2.0 metamodel classes 
                for typesafe criteria queries -->
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-jpamodelgen</artifactId>
                <scope>provided</scope>
            </dependency>
     
            <!-- Annotation processor that raising compilation errors whenever 
                constraint annotations are incorrectly used. -->
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-validator-annotation-processor</artifactId>
                <scope>provided</scope>
            </dependency>
     
            <!-- Needed for running tests (you may also use TestNG) -->
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <scope>test</scope>
            </dependency>
     
            <!-- Optional, but highly recommended -->
            <!-- Arquillian allows you to test enterprise code such as EJBs and 
                Transactional(JTA) JPA from JUnit/TestNG -->
            <dependency>
                <groupId>org.jboss.arquillian.junit</groupId>
                <artifactId>arquillian-junit-container</artifactId>
                <scope>test</scope>
            </dependency>
     
            <dependency>
                <groupId>org.jboss.arquillian.protocol</groupId>
                <artifactId>arquillian-protocol-servlet</artifactId>
                <scope>test</scope>
            </dependency>
     
        </dependencies>
     
        <build>
            <!-- Maven will append the version to the finalName (which is the 
                name given to the generated war, and hence the context root) -->
            <finalName>${project.artifactId}</finalName>
            <plugins>
                <!-- Compiler plugin enforces Java 1.6 compatibility and activates 
                    annotation processors -->
                <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>2.3.1</version>
                    <configuration>
                        <source>1.6</source>
                        <target>1.6</target>
                    </configuration>
                </plugin>
                <plugin>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>2.1.1</version>
                    <configuration>
                        <!-- Java EE 6 doesn't require web.xml, Maven needs to 
                            catch up! -->
                        <failOnMissingWebXml>false</failOnMissingWebXml>
                    </configuration>
                </plugin>
                <!-- The JBoss AS plugin deploys your war to a local JBoss AS 
                    container -->
                <!-- To use, run: mvn package jboss-as:deploy -->
                <plugin>
                    <groupId>org.jboss.as.plugins</groupId>
                    <artifactId>jboss-as-maven-plugin</artifactId>
                    <version>7.3.Final</version>
                </plugin>
            </plugins>
        </build>
     
        <profiles>
            <profile>
                <!-- The default profile skips all tests, though you can tune 
                    it to run just unit tests based on a custom pattern -->
                <!-- Seperate profiles are provided for running all tests, including 
                    Arquillian tests that execute in the specified container -->
                <id>default</id>
                <activation>
                    <activeByDefault>true</activeByDefault>
                </activation>
                <build>
                    <plugins>
                        <plugin>
                            <artifactId>maven-surefire-plugin</artifactId>
                            <version>2.4.3</version>
                            <configuration>
                                <skip>true</skip>
                            </configuration>
                        </plugin>
                    </plugins>
                </build>
            </profile>
     
            <profile>
                <!-- An optional Arquillian testing profile that executes tests 
                    in your JBoss AS instance -->
                <!-- This profile will start a new JBoss AS instance, and execute 
                    the test, shutting it down when done -->
                <!-- Run with: mvn clean test -Parq-jbossas-managed -->
                <id>arq-jbossas-managed</id>
                <dependencies>
                    <dependency>
                        <groupId>org.jboss.as</groupId>
                        <artifactId>jboss-as-arquillian-container-managed</artifactId>
                        <scope>test</scope>
                    </dependency>
                </dependencies>
            </profile>
     
            <profile>
                <!-- An optional Arquillian testing profile that executes tests 
                    in a remote JBoss AS instance -->
                <!-- Run with: mvn clean test -Parq-jbossas-remote -->
                <id>arq-jbossas-remote</id>
                <dependencies>
                    <dependency>
                        <groupId>org.jboss.as</groupId>
                        <artifactId>jboss-as-arquillian-container-remote</artifactId>
                        <scope>test</scope>
                    </dependency>
                </dependencies>
            </profile>
     
            <profile>
                <!-- When built in OpenShift the 'openshift' profile will be 
                    used when invoking mvn. -->
                <!-- Use this profile for any OpenShift specific customization 
                    your app will need. -->
                <!-- By default that is to put the resulting archive into the 
                    'deployments' folder. -->
                <!-- http://maven.apache.org/guides/mini/guide-building-for-different-environments.html -->
                <id>openshift</id>
                <build>
                    <plugins>
                        <plugin>
                            <artifactId>maven-war-plugin</artifactId>
                            <version>2.1.1</version>
                            <configuration>
                                <outputDirectory>deployments</outputDirectory>
                                <warName>ROOT</warName>
                            </configuration>
                        </plugin>
                    </plugins>
                </build>
            </profile>
     
        </profiles>
    </project>
    J'ai passé quelques heure à fouiller le web, mais je ne trouve rien (à part de vagues référence au fait que oracle redirigerai les url, et que donc ça ne marcherai plus, ce qui me semble étrange...).

    Merci d'avance!

  2. #2
    Membre Expert
    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
    Par défaut
    Écris le url de ton URL-pattern en minuscules.
    Ensuite enleve les guillemets autour de faces.

  3. #3
    Membre émérite
    Avatar de Cafeinoman
    Homme Profil pro
    Couteau suisse d'une PME
    Inscrit en
    Octobre 2012
    Messages
    628
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Couteau suisse d'une PME

    Informations forums :
    Inscription : Octobre 2012
    Messages : 628
    Par défaut
    Ca marche!

    Pour les guillemets, j'avoue, c'est ma faute, j'ai voulu tester, et j'ai oublié d'enlever après... Par contre je vais taper le mec qui a fait le template du web.xml en faisant une faute...

    Merci en tout cas!

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

Discussions similaires

  1. [Débutant] Web.config : custom section non reconnue
    Par Marc_27 dans le forum ASP.NET
    Réponses: 1
    Dernier message: 19/05/2015, 09h04
  2. [Web.xml] Balise taglib non reconnue
    Par Mister Nono dans le forum Servlets/JSP
    Réponses: 2
    Dernier message: 05/07/2007, 16h33
  3. [Test] StrutsTestCase: web.xml non trouvé
    Par anaon dans le forum Struts 1
    Réponses: 1
    Dernier message: 08/06/2006, 14h31
  4. [iText][XML] Police non reconnue
    Par mezoo dans le forum Format d'échange (XML, JSON...)
    Réponses: 4
    Dernier message: 27/04/2006, 09h48

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