본문 바로가기
Spring/Spring Security

[SpringBoot] 스프링부트 Spring Security

by s_hoonee 2023. 2. 12.
반응형

1. Spring Security란? 


[ Spring Security ]

Spring Security는 Spring 기반의 애플리케이션의 보안(인증과 권한, 인가 등)을 담당하는 스프링 하위 프레임워크이다. Spring Security는 '인증'과 '권한'에 대한 부분을 Filter 흐름에 따라 처리하고 있다. Filter는 Dispatcher Servlet으로 가기 전에 적용되므로 가장 먼저 URL 요청을 받지만, Interceptor는 Dispatcher와 Controller사이에 위치한다는 점에서 적용 시기의 차이가 있다. Spring Security는 보안과 관련해서 체계적으로 많은 옵션을 제공해주기 때문에 개발자 입장에서는 일일이 보안관련 로직을 작성하지 않아도 된다는 장점이 있다.

이러한 Spring Security의 아키텍쳐는 아래와 같다. 

1. 사용자가 http 요청을 하면 Authentication Filter로 들어온다. 
2. AuthenticationManager 부터 인증관련 절차를 밟는다.
3.이후 필터들을 거쳐서 인증된 내용을 SecurityContextHolder에 저장한다.
4. SecurityContextHolder에 저장된 내용이 있다면 컨트롤러단으로 보낸다.

 필터에 들어온 순서대로 나가는 것이 아닌 반대순서로 나가는 것을 잊지 말자 ★

 

[ 시큐리티를 설정 후에 구조 ]

 스프링 시큐리티를 설정하기 전에는 사용자 -> 컨트롤러로 바로 요청이 넘어간다

Spring Security를 설정하면 Fliter에 Spring Security의 아키텍쳐의 그림과 같이 여러 인증, 인가 필터들이 추가된다.

 

2. Authentication Filter


[ Authentication Filter ]

 request가 들어오면 이에 대한 인증과 인가를 진행해주는 부분이다. 이러한 filter의 적용은 request가 dispatcher servlet에 적용되기 전에 적용되기 때문에 허가 받지 않은 request가 dispatcher에 의해서 처리되는 것을 방지해준다.

인증(Authentication)

접근자가 누구인지 확인하는 절차

인가(Authorization)

인증된 사용자가 요청한 자원에 접근 가능한지를 결정하는 절차 

[인증] 성공 후 [인가]를 진행한다.

Spring Security에서는 이러한 인증과 인가를 위해 Principal을 아이디로, Credential을 비밀번호로 사용하는 Credential 기반의 인증 방식을 사용한다.

  • Principal(접근 주체): 보호받는 Resource에 접근하는 대상
  • Credential(비밀번호): Resource에 접근하는 대상의 비밀번호

 

3. SecurityContextHolder


[ SecurityContextHolder ]

SecurityContextHolder는 보안 주체의 세부 정보를 포함하여 응용프래그램의 현재 보안 컨텍스트에 대한 세부 정보가 저장된다. SecurityContextHolder는 기본적으로 SecurityContextHolder.MODE_INHERITABLETHREADLOCAL 방법과SecurityContextHolder.MODE_THREADLOCAL 방법을 제공한다.

 

4. SecurityContext


[ SecurityContext ]

Authentication을 보관하는 역할을 하며, SecurityContext를 통해 Authentication 객체를 꺼내올 수 있다.

 

 

5. Authentication 


[ Authentication ]

Authentication는 현재 접근하는 주체의 정보와 권한을 담는 인터페이스이다.

Authentication 객체는 Security Context에 저장되며,
SecurityContextHolder를 통해 SecurityContext에 접근하고,
SecurityContext를 통해 Authentication에 접근할 수 있다.