gpt4 book ai didi

java - JSP 2.2 EL it 关键字在 Jersey Viewable - 它记录在哪里?

转载 作者:行者123 更新时间:2023-11-29 03:33:02 25 4
gpt4 key购买 nike

我发现如果我有一个 Viewable (jersey) 将模型传递给 JSP,那么访问它的方法是在映射键前加上 it

例如

index.jsp

<html>
<body>
<h2>Hello World ${it.foo}!</h2>
</body>
</html>

JAX-RS 资源方法:

@GET
@Path("index")
public Viewable index(@Context HttpServletRequest request) {
System.out.println("/INDEX called");
HashMap<String, String> model = new HashMap<String, String>();
model.put("foo","bar");
return new Viewable("/index.jsp", model);
}

我基于此资源:http://blog.usul.org/using-jsp-in-a-jersey-jax-rs-restful-application/

但我想知道, 是什么,它来自哪里,它是 Jersey 特有的吗?如果是这样,它在哪里记录(很难搜索“它”,因为谷歌倾向于从搜索中删除它,没有双关语意)

在 Java EE 文档中找不到任何提及它的地方。

最佳答案

this documentation 的第 17.4 节中.它指出:

Jersey will assign the model instance to the attribute named "it". So in the case of the implicit example it is possible to referece the foo property on the Foo resource from the JSP template as follows:

<h1>${it.foo}</h1>

所以 it只是 Jersey 特定的模型属性。由于它是一个模型属性,因此在呈现 View 之前的某个时刻,它会被添加到请求属性中。然后可以使用 EL 访问器访问它 ${} .如果它被命名为 jerseyGuy ,您将以 ${jerseyGuy} 的形式访问它.

EL,解析 ${...}表达式,使用 PageContext#findAttribute() 将属性名称解析为页面、请求、 session 或应用程序上下文中的某个属性。

关于java - JSP 2.2 EL it 关键字在 Jersey Viewable - 它记录在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17076829/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com