karthik
karthik

Reputation: 17842

XSD validation error: TagLib tag in web.xml is not found

I show the error in detail as follows.

cvc-complex-type.2.4.a: Invalid content was found starting with element 'taglib'.

One of {

}

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>Hello World Struts Application</display-name>

    <servlet>
        <servlet-name>action</servlet-name>
        <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
        <init-param>
            <param-name>config</param-name>
            <param-value>/WEB-INF/struts-config.xml</param-value>
        </init-param>
        <init-param>
            <param-name>debug</param-name>
            <param-value>3</param-value>
        </init-param>
        <init-param>
            <param-name>detail</param-name>
            <param-value>3</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>action</servlet-name>
        <url-pattern>*.do</url-pattern>
    </servlet-mapping>

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

    <taglib>
        <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
        <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
        <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
        <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>/WEB-INF/struts-tiles.tld</taglib-uri>
        <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
    </taglib>

</web-app>

Upvotes: 5

Views: 31935

Answers (3)

Farid Ahmed
Farid Ahmed

Reputation: 719

//within: web.xml file

http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">

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

Upvotes: 0

Logan
Logan

Reputation: 2515

Modify your web.xml so that all the taglib tags are contained in jsp-config tag. i.e:

 <jsp-config>
     <taglib>
         <taglib-uri></taglib-uri>
         <taglib-location></taglib-location>
     </taglib>
 </jsp-config>

Upvotes: 21

romesub
romesub

Reputation: 233

Taglib is no longer required to be declared in web.xml , please read http://wiki.metawerx.net/wiki/RemovingTaglibFromWeb.xml

You are using Servlet 2.5, so the instructions should work for you

Upvotes: 3

Related Questions