Skip to content

config: 쿠키 설정 변경#67

Merged
gnsdp99 merged 1 commit intodevfrom
config/#66
Aug 27, 2025
Merged

config: 쿠키 설정 변경#67
gnsdp99 merged 1 commit intodevfrom
config/#66

Conversation

@gnsdp99
Copy link
Collaborator

@gnsdp99 gnsdp99 commented Aug 27, 2025

Resolved Issue

PR Description

  • 프론트에서 테스트할 때 쿠키가 전송되도록 설정을 변경했습니다.
public static ResponseCookie createResponseCookie(final String name, final String value, final String path, final Duration maxAge) {
    return ResponseCookie.from(name, value)
            .httpOnly(true)
            .path(path)
            .maxAge(maxAge)
            .secure(true)
            .sameSite(String.valueOf(org.springframework.boot.web.server.Cookie.SameSite.NONE))
            .build();
}

Others

@gnsdp99 gnsdp99 merged commit dbff09a into dev Aug 27, 2025
3 checks passed
@gnsdp99 gnsdp99 deleted the config/#66 branch August 27, 2025 11:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

config: 쿠키 설정 변경

2 participants