web-dev-qa-db-fra.com

Pourquoi <taglib> me pose-t-il un problème dans mon web.xml

J'ai ce web.xml

<?xml version="1.0" encoding="UTF-8"?>
  <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://Java.Sun.com/xml/ns/javaee" xmlns:web="http://Java.Sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://Java.Sun.com/xml/ns/javaee http://Java.Sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
   <display-name>jsp-tags</display-name>
     <taglib>
       <taglib-uri>mytags</taglib-uri>
       <taglib-location>/WEB-INF/mytaglib.tld</taglib-location>
    </taglib>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
   </welcome-file-list> 
</web-app>

Le est mis en surbrillance et l'erreur IDE] est la suivante: "Un contenu non valide a été trouvé à partir de l'élément ...

Que dois-je faire de plus?

22
Ankur

Utilisez cette notation:

<jsp-config> 
        <taglib> 
               <taglib-uri>mytags</taglib-uri> 
               <taglib-location>/WEB-INF/jsp/mytaglib.tld</taglib-location> 
        </taglib> 
</jsp-config>

Mais j'ai recommandé de lire ceci link . Ce tutoriel vous expliquera comment éviter de déclarer des taglibs dans web.xml dans le cas de JSP 2.0

47
Jaydeep Patel

Dans le XSD référencé dans votre XML, il est indiqué que pour le type complexe web-appType, vous ne pouvez choisir entre zéro et plusieurs des éléments suivants:

<xsd:choice minOccurs="0" maxOccurs="unbounded">
  <xsd:group ref="javaee:descriptionGroup"/>
  <xsd:element name="distributable"
 type="javaee:emptyType"/>
  <xsd:element name="context-param"
 type="javaee:param-valueType">

  </xsd:element>
  <xsd:element name="filter"
 type="javaee:filterType"/>
  <xsd:element name="filter-mapping"
 type="javaee:filter-mappingType"/>
  <xsd:element name="listener"
 type="javaee:listenerType"/>
  <xsd:element name="servlet"
 type="javaee:servletType"/>
  <xsd:element name="servlet-mapping"
 type="javaee:servlet-mappingType"/>
  <xsd:element name="session-config"
 type="javaee:session-configType"/>
  <xsd:element name="mime-mapping"
 type="javaee:mime-mappingType"/>
  <xsd:element name="welcome-file-list"
 type="javaee:welcome-file-listType"/>
  <xsd:element name="error-page"
 type="javaee:error-pageType"/>
  <xsd:element name="jsp-config"
 type="javaee:jsp-configType"/>
  <xsd:element name="security-constraint"
 type="javaee:security-constraintType"/>
  <xsd:element name="login-config"
 type="javaee:login-configType"/>
  <xsd:element name="security-role"
 type="javaee:security-roleType"/>
  <xsd:group ref="javaee:jndiEnvironmentRefsGroup"/>
  <xsd:element name="message-destination"
 type="javaee:message-destinationType"/>
  <xsd:element name="locale-encoding-mapping-list"
 type="javaee:locale-encoding-mapping-listType"/>
</xsd:choice>

L'élément taglib n'est pas du tout référencé dans le fichier XSD.

En lisant ce lien , il semblerait que vous n’ayez pas besoin de déclarer des taglibs dans le document d’application Web. Avoir simplement l'attribut version = "2.5" signifie que vous pouvez référencer des balises dans vos JSP.

6
Synesso

Si la balise est dans une dépendance maven, vient de définir la portée à compiler.

<dependency>
     <groupId>org.Apache.struts</groupId>
     <artifactId>struts-taglib</artifactId>
     <version>1.3.10</version>
     <scope>compile</scope>
</dependency>
0
Daniel De León