diff --git a/CHANGELOG.md b/CHANGELOG.md index 61c329bba..eaadf11bf 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,14 @@ # 🚀Changelog ------------------------------------------------------------------------------------------------------------- -# 5.8.15.M1 (2023-03-08) +# 5.8.15.M1 (2023-03-09) ### 🐣新特性 +* 【http 】 新增followRedirectsCookie配置,支持开启自动重定向携带cookie(pr#2961@Github) + ### 🐞Bug修复 * 【all 】 修复Automatic-Module-Name错误问题(issue#2952@Github) -* 【all 】 修复NumberWithFormat导致转换Long异常问题(issue#I6L2LO@Gitee) +* 【core 】 修复NumberWithFormat导致转换Long异常问题(issue#I6L2LO@Gitee) ------------------------------------------------------------------------------------------------------------- diff --git a/hutool-http/src/main/java/cn/hutool/http/HttpConfig.java b/hutool-http/src/main/java/cn/hutool/http/HttpConfig.java index 8e31518af..72fd765ce 100755 --- a/hutool-http/src/main/java/cn/hutool/http/HttpConfig.java +++ b/hutool-http/src/main/java/cn/hutool/http/HttpConfig.java @@ -305,8 +305,10 @@ public class HttpConfig { /** * 自动重定向时是否处理cookie - * @param followRedirectsCookie 自动重定向时是否处理cookie + * + * @param followRedirectsCookie 自动重定向时是否处理cookie * @return this + * @since 5.8.15 */ public HttpConfig setFollowRedirectsCookie(boolean followRedirectsCookie) { this.followRedirectsCookie = followRedirectsCookie; diff --git a/hutool-http/src/main/java/cn/hutool/http/HttpRequest.java b/hutool-http/src/main/java/cn/hutool/http/HttpRequest.java index be9f23212..1e30a172c 100755 --- a/hutool-http/src/main/java/cn/hutool/http/HttpRequest.java +++ b/hutool-http/src/main/java/cn/hutool/http/HttpRequest.java @@ -1262,7 +1262,7 @@ public class HttpRequest extends HttpBase { private HttpResponse sendRedirectIfPossible(boolean isAsync) { // 手动实现重定向 if (config.maxRedirectCount > 0) { - int responseCode; + final int responseCode; try { responseCode = httpConnection.responseCode(); } catch (IOException e) { @@ -1270,7 +1270,8 @@ public class HttpRequest extends HttpBase { this.httpConnection.disconnectQuietly(); throw new HttpException(e); } - //支持自动重定向时处理cookie + // 支持自动重定向时处理cookie + // https://github.com/dromara/hutool/issues/2960 if (config.followRedirectsCookie) { GlobalCookieManager.store(httpConnection); } diff --git a/hutool-http/src/test/java/cn/hutool/http/server/RedirectServerTest.java b/hutool-http/src/test/java/cn/hutool/http/server/RedirectServerTest.java index e818e370f..ab4d4a689 100644 --- a/hutool-http/src/test/java/cn/hutool/http/server/RedirectServerTest.java +++ b/hutool-http/src/test/java/cn/hutool/http/server/RedirectServerTest.java @@ -8,19 +8,19 @@ public class RedirectServerTest { public static void main(String[] args) { HttpUtil.createServer(8888).addAction("/redirect1", (request, response) -> { - response.addHeader(Header.LOCATION.getValue(),"http://localhost:8888/redirect2"); - response.addHeader(Header.SET_COOKIE.getValue(),"redirect1=1; path=/; HttpOnly"); + response.addHeader(Header.LOCATION.getValue(), "http://localhost:8888/redirect2"); + response.addHeader(Header.SET_COOKIE.getValue(), "redirect1=1; path=/; HttpOnly"); response.send(301); }).addAction("/redirect2", (request, response) -> { - response.addHeader(Header.LOCATION.getValue(),"http://localhost:8888/redirect3"); + response.addHeader(Header.LOCATION.getValue(), "http://localhost:8888/redirect3"); response.addHeader(Header.SET_COOKIE.getValue(), "redirect2=2; path=/; HttpOnly"); response.send(301); }).addAction("/redirect3", (request, response) -> { - response.addHeader(Header.LOCATION.getValue(),"http://localhost:8888/redirect4"); - response.addHeader(Header.SET_COOKIE.getValue(),"redirect3=3; path=/; HttpOnly"); + response.addHeader(Header.LOCATION.getValue(), "http://localhost:8888/redirect4"); + response.addHeader(Header.SET_COOKIE.getValue(), "redirect3=3; path=/; HttpOnly"); response.send(301); }).addAction("/redirect4", (request, response) -> { - String cookie = request.getHeader(Header.COOKIE); + final String cookie = request.getHeader(Header.COOKIE); Console.log(cookie); response.sendOk(); }).start();