CustomSecurityConfig ( 접근 권한 해제 )
페이지 정보
작성자 관리자 작성일 24-07-04 14:55 조회 89 댓글 0본문
package web.config;
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.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();
}
}
[설명]
적용 저장 후 브라우저 새로 실행하면 로그인 처리 없이 실행 되는 것을 확인 할 수 있다.
filterChain() 설정으로 모든 사용자가 모든 경로에 접근할 수 있게 된다.
댓글목록 0
등록된 댓글이 없습니다.