unable to add a cookie included in JSP via jsp:include

♀尐吖头ヾ 提交于 2019-12-07 04:50:03

问题


Cookies are not getting added to the browser when the code adding the cookie is part of a fragment of JSP (includes.jsp) included in the primary page (main.jsp) via JSP:INCLUDE.

The code works fine when it is part of the primary page (main.jsp). However, I need to add the cookie via the fragment since that fragment is used in dozens of pages where I want the cookie to get added.

Note: The jsp:include is part of the header section of main.jsp (the fragment also adds a number of javascript and css references)

Here is the snippet:

Cookie cookie = new Cookie ("test","test cookie");
cookie.setMaxAge(365 * 24 * 60 * 60);
cookie.setPath("/");
response.addCookie(cookie2);

The above works fine when it is part of the main.jsp but doesn't work when it is part of the fragment added to main.jsp via . it is almost as if the response object is being reset after the fragment is rendered.


回答1:


The <jsp:include> uses under the covers RequestDispatcher#include() and its docs say:

...

The ServletResponse object has its path elements and parameters remain unchanged from the caller's. The included servlet cannot change the response status code or set headers; any attempt to make a change is ignored.

...

(emphasis mine)

Cookies are to be set in the response header. So it stops here. Consider the compile time variant <%@include%>, it get literally inlined in the main JSP's source.




回答2:


Source code:

request.setAttribute(“res”, response);
<jsp:include page=“url” />

Target code:

HttpServletResponse res = (HttpServletResponse)request.getAttribute(“res”);

//cookie create
Cookie cookie = new Cookie(“test”, “test”);

res.addCookie(cookie);


来源:https://stackoverflow.com/questions/7532494/unable-to-add-a-cookie-included-in-jsp-via-jspinclude

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!