解决JSP中C标签无法使用

项目中遇到C标签无法使用,jstl1.2 jar 包已经引用,web.xml配置OK,JSP引用OK,就是无法使用,找了半天,终于发现 同事在自定义标签中加入了
<uri>http://java.sun.com/jsp/jstl/core</uri>,

以此分享给以后的朋友们,切勿在自定义标签中加入上面内容,否则会覆盖C标签,导致C标签无法使用的情况

<?xml version="1.0" encoding="utf-8"?>
<taglib version="2.0" 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 web-jsptaglibrary_2_0.xsd">
<description>按钮功能权限标签</description>
<display-name>JSTL core</display-name>
<tlib-version>1.1</tlib-version>
<short-name>fun</short-name>
<!--<uri>http://java.sun.com/jsp/jstl/core</uri>**自定义标签不能占用C标签**-->
<!-- 创建自定义 迭代标签 -->
<tag>
  <name>privilegeCheck</name>
  <tag-class>com.tydic.comm.tld.FunPrivilegeTag</tag-class>
  <!-- 如果没有标签体,设置empty , 如果有标签休必须设置JSP-->
  <body-content>JSP</body-content>
  <attribute>
   <name>btn_code</name>
   <required>true</required>
   <!-- 标识属性是否是必须的 -->
   <rtexprvalue>true</rtexprvalue>
   <!-- 标识属性值是否可以用表达式语言 -->
  </attribute>
 
</tag>

你可能感兴趣的:(jsp)