CustomSecurityConfig ( 접근 적용 제외 ) > SPRING_DATA_JPA

본문 바로가기
사이트 내 전체검색

SPRING_DATA_JPA

CustomSecurityConfig ( 접근 적용 제외 )

페이지 정보

profile_image
작성자 관리자
댓글 0건 조회 210회 작성일 24-07-05 12:41

본문

package web.config;


import org.springframework.boot.autoconfigure.security.servlet.PathRequest;

import org.springframework.context.annotation.Bean;

import org.springframework.context.annotation.Configuration;

import org.springframework.security.config.annotation.web.builders.HttpSecurity;

import org.springframework.security.config.annotation.web.configuration.WebSecurityCustomizer;

import org.springframework.security.web.SecurityFilterChain;


import lombok.RequiredArgsConstructor;

import lombok.extern.log4j.Log4j2;


@Log4j2

@Configuration

@RequiredArgsConstructor

public class CustomSecurityConfig {


@Bean

public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {

log.info("-------시큐리티 해제-------");


return http.build();

}


@Bean

public WebSecurityCustomizer webSecurityCustomizer() {

log.info("-------시큐리티 적용 제외-------");


return (web) -> web.ignoring().requestMatchers(PathRequest.toStaticResources().atCommonLocations());

}

}




[설명]

web.ignoring() 메서드는 보안 검사를 무시할 요청을 설정하는 메서드입니다.

requestMatchers(PathRequest.toStaticResources().atCommonLocations())는 정적 리소스(예: CSS, JavaScript, 이미지 파일 등) 요청을 보안 검사에서 제외합니다. 

PathRequest.toStaticResources().atCommonLocations()는 일반적인 정적 리소스 위치를 나타내는 헬퍼 메서드입니다.


정리하면, 이 메서드는 정적 리소스에 대한 요청을 Spring Security의 보안 검사에서 제외하도록 설정합니다.

이렇게 하면 정적 리소스에 대한 요청이 보안 검사 없이 처리되어 성능이 향상될 수 있습니다.


댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

사이트 정보

공지사항
자유게시판
질문답변
1:1문의

 

별명 : 터푸가위
주소 : 부산시 동래구 명장로20번길 90
대표 : 박규태
메일 : dancepkt@******.com

접속자집계

오늘
233
어제
199
최대
10,760
전체
275,262
Copyright © dancePKT . All rights reserved.