spring boot web项目在某些情况下的301跳转成了空白页,查看浏览器F12 发现Location字段都没了。
RedirectView view = new RedirectView("/tag/"+tag);
排查日志,发现重要信息:
WARN o.a.c.h.Http11Processor - The HTTP response header [Location] with value [/tag/java单例] has been removed from the response because it is invalid
导致原因为:路径含中文或其他非常规字符,被认定为无效路径,从Localtion删除了。
手动将可能为非常规字符部分URL编码一下,修改后示例:
RedirectView view = new RedirectView("/tag/"+URLEncoder.encode(tag,StandardCharsets.UTF_8));
提示:不要整个地址进行编码,会导致/路径也被编码,导致路径无效哟。
https://blog.xqlee.com/article/2504241432277308.html