CustomSecurityConfig ( 접근 권한 해제 )
페이지 정보
본문
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();
}
}
[설명]
적용 저장 후 브라우저 새로 실행하면 로그인 처리 없이 실행 되는 것을 확인 할 수 있다.
- 이전글▲ 설정 완료 후 프로젝트 실행 24.07.04
- 다음글■ 스프링 시큐리티 24.07.04
댓글목록
등록된 댓글이 없습니다.