访问 JSP 中的常量(不带脚本)使用脚本使用 JSTL

2022-09-01 14:41:52

我有一个类,定义了各种会话属性的名称,例如

class Constants {
    public static final String ATTR_CURRENT_USER = "current.user";
}

我想在 JSP 中使用这些常量来测试这些属性是否存在,如下所示:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page import="com.example.Constants" %>

<c:if test="${sessionScope[Constants.ATTR_CURRENT_USER] eq null}">
    <%-- Do somthing --%>
</c:if>

但我似乎无法正确获得sytax。此外,为了避免在多个位置重复上述相当冗长的测试,我想将结果分配给本地(页面范围的)变量,并改为引用它。我相信我可以用 来做到这一点,但是我再次努力寻找正确的语法。<c:set>

更新:根据下面的建议,我尝试了:

<c:set var="nullUser" scope="session"
value="${sessionScope[Constants.ATTR_CURRENT_USER] eq null}" />

这不起作用。因此,我尝试替换常量的字面值。我还将常量添加到页面内容中,以便在呈现页面时验证常量的值

<c:set var="nullUser" scope="session"
value="${sessionScope['current.user'] eq null}" />
<%= "Constant value: " + WebHelper.ATTR_CURRENT_PARTNER %>

这工作正常,并在页面上打印了预期的值“current.user”。我不知道为什么使用String文字有效,但是当两者似乎具有相同的值时,对常量的引用却不起作用。帮助。。。。。


答案 1

它在您的示例中不起作用,因为该常量对 JSTL 标记不可见,这些标记期望 getter 函数公开属性。我还没有尝试过,但是公开常量的最干净的方式似乎是非标准标签库ATTR_CURRENT_USER

ETA:我给出的旧链接不起作用。可以在以下答案中找到新链接:JSP中的Java常量

用于阐明您所看到的行为的代码片段:示例类:

package com.example;

public class Constants
{
    // attribute, visible to the scriptlet
    public static final String ATTR_CURRENT_USER = "current.user";

    // getter function;
    // name modified to make it clear, later on, 
    // that I am calling this function
    // and not accessing the constant
    public String getATTR_CURRENT_USER_FUNC()
    {
        return ATTR_CURRENT_USER;
    }


}    

JSP 页面的代码段,显示示例用法:

<%-- Set up the current user --%>
<%
    session.setAttribute("current.user", "Me");
%>

<%-- scriptlets --%>
<%@ page import="com.example.Constants" %>
<h1>Using scriptlets</h1>
<h3>Constants.ATTR_CURRENT_USER</h3>
<%=Constants.ATTR_CURRENT_USER%> <br />
<h3>Session[Constants.ATTR_CURRENT_USER]</h3>
<%=session.getAttribute(Constants.ATTR_CURRENT_USER)%>

<%-- JSTL --%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<jsp:useBean id="cons" class="com.example.Constants" scope="session"/>

<h1>Using JSTL</h1>
<h3>Constants.getATTR_CURRENT_USER_FUNC()</h3>
<c:out value="${cons.ATTR_CURRENT_USER_FUNC}"/>
<h3>Session[Constants.getATTR_CURRENT_USER_FUNC()]</h3>
<c:out value="${sessionScope[cons.ATTR_CURRENT_USER_FUNC]}"/>
<h3>Constants.ATTR_CURRENT_USER</h3>
<c:out value="${sessionScope[Constants.ATTR_CURRENT_USER]}"/>
<%--
Commented out, because otherwise will error:
The class 'com.example.Constants' does not have the property 'ATTR_CURRENT_USER'.

<h3>cons.ATTR_CURRENT_USER</h3>
<c:out value="${sessionScope[cons.ATTR_CURRENT_USER]}"/>
--%>
<hr />

此输出:

使用脚本

Constants.ATTR_CURRENT_USER

当前用户

会话[Constants.ATTR_CURRENT_USER]


使用 JSTL

Constants.getATTR_CURRENT_USER_FUNC()

当前用户

会话[Constants.getATTR_CURRENT_USER_FUNC()]

Constants.ATTR_CURRENT_USER




答案 2

您可以使用c:set将Constants.ATTR_CURRENT_USER定义为变量,如下所示:

<c:set var="ATTR_CURRENT_USER" value="<%=Constants.ATTR_CURRENT_USER%>" />
<c:if test="${sessionScope[ATTR_CURRENT_USER] eq null}">     
    <%-- Do somthing --%> 
</c:if> 

推荐