在使用Jersey的JAX-RS资源中提供以下内容:
import javax.ws.rs.core.Response;
...
Map<String, String> map = new HashMap<String, String>();
map.put("myAttribute", "value");
return Response.ok(new Viewable("myJsp.jsp", map))
.build();
从jsp访问myAttribute的正确方法是什么?尝试过此方法,但它返回null:
console.log("<%= response.getHeader("myAttribute") %>");
请注意,使用<jsp:include>.
将JSP页面包含在父页面中>
谢谢
使用Jersey在JAX-RS资源中提供以下内容:import javax.ws.rs.core.Response; ... Map
根据Jersey MVC documentation,您可以使用: