在JSF中找不到JSTL函数

问题描述 投票:6回答:2

我正在尝试在用户当前正在查看的页面上添加一个活动类,但是我无法使用JSTL函数。我在做什么错?

xmlns:fn="http://java.sun.com/jstl/functions"

h:link中使用

styleClass="#{fn:containsIgnoreCase(request.requestURI,'index') ? 'active' : ''}"

导致此错误:

styleClass="#{fn:containsIgnoreCase(request.requestURI,'index')}" Function 'fn:containsIgnoreCase' not found
jsf jstl
2个回答
12
投票

您输入的错误,应该是:

xmlns:fn="http://java.sun.com/jsp/jstl/functions"

您忘了/ jsp


0
投票

Bom dia。Coloquei dessa forma mas aindanãodeu certo:“ http://java.sun.com/jsp/jstl/functions

© www.soinside.com 2019 - 2024. All rights reserved.