We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78a1cf0 commit b5594fcCopy full SHA for b5594fc
src/main/java/com/dnd/reevserver/global/util/CookieUtils.java
@@ -5,14 +5,15 @@
5
import jakarta.servlet.http.HttpServletResponse;
6
import org.springframework.http.ResponseCookie;
7
8
+
9
public class CookieUtils {
10
private CookieUtils() {
11
throw new IllegalStateException("Utility class");
12
}
13
14
public static ResponseCookie createReissueCookie(String name, String value, int maxAge) {
15
return ResponseCookie.from(name, value)
- .secure(true)
16
+ .secure(false) // 현재 프론트가 http 개발 환경이기에 false 처리
17
.sameSite("None")
18
.httpOnly(true)
19
.path("/")
0 commit comments