0 0

<jsp-config> element is limited to 1 occurance异常3

在配置web.xml的时候,配置一个jsp-config没有问题,但是配置两个jsp-config的时候,出现如下异常:
严重: Begin event threw exception
java.lang.IllegalArgumentException: <jsp-config> element is limited to 1 occuran
ce
        at org.apache.catalina.startup.SetJspConfig.begin(WebRuleSet.java:535)
        at org.apache.tomcat.util.digester.Digester.startElement(Digester.java:1
358)

是不是web.xml里面只能配置一个jsp-config?下面是我的配置,请大家指教!
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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">

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

   <jsp-config>
    	<taglib>
    		<taglib-uri>http://com.org/DataTags</taglib-uri>
    		<taglib-location>/WEB-INF/tags/DataTag.tld</taglib-location>
    	</taglib>
    </jsp-config>  
   <jsp-config>
    	<taglib>
    		<taglib-uri>/mytld</taglib-uri>
    		<taglib-location>/WEB-INF/tags/FunAuth.tld</taglib-location>
    	</taglib>
    </jsp-config>  
</web-app>


配置错了,呵呵,太大意了
<jsp-config>
    <taglib>
    <taglib-uri>http://com.org/DataTags</taglib-uri>
    <taglib-location>/WEB-INF/tags/DataTag.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/mytld</taglib-uri>
    <taglib-location>/WEB-INF/tags/FunAuth.tld</taglib-location>
    </taglib>
    </jsp-config> 
2009年12月28日 10:56

1个答案 按时间排序 按投票排序

0 0

<jsp-config> element is limited to 1 occuran  
ce  
这个提示的意思就同<jsp-config> 元素只允许出现一次的

2010年1月12日 08:41

相关推荐

Global site tag (gtag.js) - Google Analytics