Skip to content

Commit

Permalink
Merge pull request #32 from 1223v/test
Browse files Browse the repository at this point in the history
Fix: Cors 허용 헤더 추가
  • Loading branch information
1223v authored Nov 19, 2023
2 parents 8169e9b + a4f0f4a commit bcdab6b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public class SpringSecurityConfig {
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http
// [PART 1]
.cors(cors -> cors.configurationSource(corsConfigurationSource()))
.csrf(AbstractHttpConfigurer::disable)
.sessionManagement((sessionManagement) ->
sessionManagement.sessionCreationPolicy(SessionCreationPolicy.STATELESS)
Expand All @@ -57,8 +58,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
"/oauth2/**",
"/login",
"/api/v1/store/**"
).permitAll() // 해당 요청은 인증이 필요함
.anyRequest().authenticated() // 위를 제외한 나머지는 모두 허용
).permitAll() // 위를 제외한 나머지는 모두 허용
.anyRequest().authenticated() // 해당 요청은 인증이 필요함
)
// [PART 3]
//== 소셜 로그인 설정 ==//
Expand Down Expand Up @@ -94,14 +95,14 @@ public PasswordEncoder passwordEncoder() {

@Bean
CorsConfigurationSource corsConfigurationSource() {
CorsConfiguration configuration = new CorsConfiguration();
configuration.setAllowedOrigins(Arrays.asList("*"));
configuration.setAllowedMethods(Arrays.asList("POST", "PATCH", "GET", "DELETE"));

// TODO: 이 부분은 나중에 삭제해야 됨
//configuration.setAllowedMethods(Arrays.asList("*")); // 모든 HTTP 메서드 허용
configuration.setAllowedHeaders(Arrays.asList("*")); // 모든 헤더 허용
configuration.setAllowCredentials(true); // 크레덴셜(쿠키, HTTP 인증 등) 허용
CorsConfiguration configuration = new CorsConfiguration();
configuration.setAllowedOriginPatterns(Arrays.asList("*")); // 변경된 설정
configuration.setAllowedMethods(Arrays.asList("GET", "POST", "OPTIONS"));
configuration.setAllowedHeaders(Arrays.asList("*"));
configuration.setAllowCredentials(true);

UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
source.registerCorsConfiguration("/**", configuration);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,9 @@ public void setAccessTokenCookie(HttpServletResponse response, String accessToke
// 필요한 경우 동일한 사이트 속성 설정 (쿠키 전송에 대한 제한)
// accessTokenCookie.setSameSite("Strict");

// 도메인 설정
accessTokenCookie.setDomain("localhost");

// 쿠키 만료 시간 설정 (예: 액세스 토큰 만료 시간과 같게 설정)
accessTokenCookie.setMaxAge(accessTokenExpirationPeriod.intValue()); // 초 단위로 설정
response.addCookie(accessTokenCookie); // 응답에 쿠키 추가
Expand Down

0 comments on commit bcdab6b

Please sign in to comment.