访问自定义 EL 函数内的 JSP 上下文

发布于 2024-10-22 20:39:15 字数 31 浏览 2 评论 0原文

如何访问自定义 EL 函数内的 JSP 上下文。

How can I access the JSP context inside a custom EL function.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦里兽 2024-10-29 20:39:15

您必须将其显式包含为实现 EL 函数的方法的参数。

实现 EL 功能的 Java 方法:

public static Object findAttribute(String name, PageContext context) {
    return context.findAttribute(name);
}

EL 功能的 TLD 条目:

<function>
    <name>findAttribute</name>
    <function-class>kschneid.Functions</function-class>
    <function-signature>java.lang.Object findAttribute(java.lang.String, javax.servlet.jsp.PageContext)</function-signature>
</function>

JSP 中的用法:

<%@ taglib prefix="kfn" uri="http://kschneid.com/jsp/functions" %>
...
<c:if test="${empty kfn:findAttribute('userId', pageContext)}">...</c:if>

You have to explicitly include it as an argument to the method that implements your EL function.

Java method that implements EL function:

public static Object findAttribute(String name, PageContext context) {
    return context.findAttribute(name);
}

TLD entry for EL function:

<function>
    <name>findAttribute</name>
    <function-class>kschneid.Functions</function-class>
    <function-signature>java.lang.Object findAttribute(java.lang.String, javax.servlet.jsp.PageContext)</function-signature>
</function>

Usage in JSP:

<%@ taglib prefix="kfn" uri="http://kschneid.com/jsp/functions" %>
...
<c:if test="${empty kfn:findAttribute('userId', pageContext)}">...</c:if>
花海 2024-10-29 20:39:15

或者你可以使用一个复杂的技巧。 会容易得多

  • 如果您同意使用 ServletContext 而不是 PageContext ,那么在您的 EL 函数类中,定义一个静态 ThreadLocal 变量
  • 从自定义过滤器中,设置 PageContext
  • 从 EL 函数自由访问

代码示例:

public class MyFunctions {

    private static final ThreadLocal<ServletContext> servletContext = new ThreadLocal<>();

    public static void setServletContext(ServletContext servletContext) {
        MyFunctions.servletContext.set(servletContext);
    }

}

public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException{
    ...

    MyFunctions.setServletContext(servletRequest.getServletContext());

    filterChain.doFilter(servletRequest, servletResponse);
}

如果您确实需要 PageContext,最好在 JSP 中执行 setPageContext scritplet,可能在包含文件中。这样做的缺点是每个 JSP 文件都必须执行该包含

Or you can use a sophisticated trick. If you are OK with the ServletContext rather than PageContext it will be much easier

  • In your EL function class, define a static ThreadLocal<PageContext> variable
  • From a custom filter, set that PageContext
  • Access freely from your EL function

Code example:

public class MyFunctions {

    private static final ThreadLocal<ServletContext> servletContext = new ThreadLocal<>();

    public static void setServletContext(ServletContext servletContext) {
        MyFunctions.servletContext.set(servletContext);
    }

}

public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException{
    ...

    MyFunctions.setServletContext(servletRequest.getServletContext());

    filterChain.doFilter(servletRequest, servletResponse);
}

If you really need PageContext better do that setPageContext in a JSP scritplet, possibly in an inclusion file. This has the drawback that EVERY JSP file must perform that inclusion

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文