Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- windows apache wsgi 에러
- django apache deploy error
- windows 원격 연결 설정
- django 웹 페이지
- 2643 색종이 올려 놓기
- 1188 java
- django The requested operation has failed!
- 18233 러버덕
- django
- 2961 java
- django httpd error
- java di
- 2643 java
- APPEND_SLASH = FALSE
- django 프로젝트 시작
- 14711 java
- Problems occurred while performing provisioning operation
- django settings.py
- 2661 java
- 2661 좋은 수열
- The requested operation has failed!
- django windows 배포 에러
- 14711 타일 뒤집기
- 1188 음식 평론가
- 18233 java
- 공유기 원격 설정
- 원격 연결 포트 포워딩
- apache pythonpath
- 18233 비트마스킹
- 2961 도영이가 만든 맛있는 음식
Archives
라이브러리는 도서관 아닌가요
Spring Boot에서 spring security의 설정 파일 생성 본문
목표: 설정 파일 생성 후 default 로그인 창이 뜨지 않게 하기 + 정상 동작 log 확인
src/main/java의 경로에 security 설정 파일을 두기 위한 패키지를 생성하고
SecurityConfig.java를 생성한다.
package dev.mvc.security;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import lombok.extern.java.Log;
@Log
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter{
@Override
protected void configure(HttpSecurity http) throws Exception{
log.info("-----security config check-----");
}
}
@EnableWebSecurity를 통해 스프링 빈으로 인식되도록 한다.
그 다음 실제 설정을 담당하는 WebSecurityConfigurerAdapter를 상속한다.
위의 Adapter가 가진 메서드 중에서 configure() 메서드를 오버라이딩해 간단한 로그를 찍는다.
최종적으로 프로젝트를 종료했다가 다시 실행시켜도 일일이 로그인을 묻지 않는다.
'Spring > Spring Security' 카테고리의 다른 글
spring security 405 에러 Request methed 'POST' not supported (0) | 2022.01.08 |
---|---|
AuthenticationProvider 구현 (0) | 2021.12.30 |
spring security jpa oracle dialect 18c 12c 연결 (0) | 2021.12.27 |
Spring Boot Gradle을 통해 spring security dependency 추가 (0) | 2021.12.13 |
Comments