如何修复 net::ERR_INCOMPLETE_CHUNKED_ENCODING 200 java 网络应用程序?
How to fix net::ERR_INCOMPLETE_CHUNKED_ENCODING 200 java web app?
我正在开发 java 网络应用程序,我正在设置 jsessionid 属性:InitSession 的 doFilter() 方法中的 HttpOnly、Secure 和 SameSite class。我有这样的设置:
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain filterChain) throws IOException, ServletException {
Cookie jsessionCookie = RequestHelper.getCookie(request, SESSION_COOKIE_NAME);
SecurityWrapperResponse
securityWrapperResponse = new SecurityWrapperResponse(response, "sanitize");
String contextPath = request.getServletContext() != null && StringUtils.isNotBlank(request.getServletContext().getContextPath()) ? request.getServletContext().getContextPath() : ROOT_CONTEXT;
ESAPI.httpUtilities().setHeader("Set-Cookie", jsessionCookie.getName() + "=" + jsessionCookie.getValue() + SESSION_PATH_ATTRIBUTE + contextPath + SAME_SITE_ATTRIBUTE_VALUES);
filterChain.doFilter(request, response);
.
.
.
}
导航到应用程序的第 3 页时出现错误:
净值::ERR_INCOMPLETE_CHUNKED_ENCODING 200
这只是在我使用上面的代码设置标题之后才开始发生的。任何想法将不胜感激!
谢谢
此问题已通过更新需要此更新的旧库得到解决:https://mvnrepository.com/artifact/org.directwebremoting/dwr/3.0.2-RELEASE
我正在开发 java 网络应用程序,我正在设置 jsessionid 属性:InitSession 的 doFilter() 方法中的 HttpOnly、Secure 和 SameSite class。我有这样的设置:
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain filterChain) throws IOException, ServletException {
Cookie jsessionCookie = RequestHelper.getCookie(request, SESSION_COOKIE_NAME);
SecurityWrapperResponse
securityWrapperResponse = new SecurityWrapperResponse(response, "sanitize");
String contextPath = request.getServletContext() != null && StringUtils.isNotBlank(request.getServletContext().getContextPath()) ? request.getServletContext().getContextPath() : ROOT_CONTEXT;
ESAPI.httpUtilities().setHeader("Set-Cookie", jsessionCookie.getName() + "=" + jsessionCookie.getValue() + SESSION_PATH_ATTRIBUTE + contextPath + SAME_SITE_ATTRIBUTE_VALUES);
filterChain.doFilter(request, response);
.
.
.
}
导航到应用程序的第 3 页时出现错误: 净值::ERR_INCOMPLETE_CHUNKED_ENCODING 200 这只是在我使用上面的代码设置标题之后才开始发生的。任何想法将不胜感激!
谢谢
此问题已通过更新需要此更新的旧库得到解决:https://mvnrepository.com/artifact/org.directwebremoting/dwr/3.0.2-RELEASE