JSTL出错 According to TLD or attribute directive in tag file

本文记录了一次使用JSTL过程中遇到的问题及解决办法。作者在使用JSTL时遭遇错误提示,通过排查发现是由于web.xml文件中指定的版本号与JSTL不兼容导致。将版本号从2.5改为2.3后,问题得以解决。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

今天搞JSTL时,发现了一个很大问题,JSTL什么语法都没错的情况下还报以下的错:

org.apache.jasper.JasperException: /index.jsp(42,5) According to TLD or attribute directive in tag file, attribute items does not accept any expressions

 

太惊喜了,终于找到原因所在,原来是web.xml里的版本问题:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5 "
    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_2_5 .xsd">

 

以上的配置是出现问题的配置,把2.5的版本改成2.3 就可以了;如下:

<web-app version="2.3 "
    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_2_3. xsd">

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值