JSP標籤庫的版本問題導致的錯誤

JSP中出現According to TLD or attribute directive in tag file, attribute value does not accept any exdivssions

應用部署運行的時候出現JSP異常, 發生在使用JSTL庫的時候: According to TLD or attribute directive in tag file, attribute value does not accept any exdivssions, 可能是因爲使用了JSP2.0版本, 同時又沒有使用JSTL core庫的備用版本(RT庫), 以下有兩種處理方法:

1. 修改web.xml.

<web-app 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" version="2.4">
改爲2.3版本的

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
2. 使用JSTL core RT庫

JSTL core庫的有兩種taglib僞指令, 其中RT庫即是依賴於JSP傳統的請求時屬性值, 而不是依賴於EL來實現(稱爲EL庫.JSP2.0將支持EL)

JSP中使用<%@ taglib uri=http://java.sun.com/jstl/core divfix="c"%>在2.3版本都可以,在2.4就不行了, 難道是版本不兼容嗎?

只要將

<%@ taglib uri="http://java.sun.com/jstl/core" divfix="c"%>
改爲

<%@ taglib uri=http://java.sun.com/jstl/core_rt divfix="c"%>
發佈了1 篇原創文章 · 獲贊 1 · 訪問量 1531
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章