차근차근/Spring

Spring Security란(1) - 추가예정

예쁜꽃이피었으면 2022. 1. 11. 17:25

인증과 권한은 spring security의 목표이다.

https://mangkyu.tistory.com/76

인증(Authentication)

- 참이라는 근거가 있는 무언가를 확인하거나 확증하는 행위 / 사람들의 신분을 구성

- 해당 사용자가 본인이 맞는지를 확인하는 절차

- 어플리케이션의 작업을 수행할 수 있는 주체(사용자)라고 주장할 수 있는 것

인가(Authorization)

- 인정하여 허가한다

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

- 인증된 주체가 어플리케이션의 동작을 수행할 수 있도록 허락되어있는지를 결정하는 것

 

* Spring Security는 기본적으로 인증절차를 거친 후에 인가절차를 진행하게 되며, 인가 과정에서 해당 리소스에 대한 접근권한이 있는지 확인하게 된다.

spring security에서는 이러한 인증과 인가를 위해 principal(접근주체, 보호받는 Resource에 접근하는 대상)을 아이디로 , credential(비밀번호,Resource에 접근하는 대상의 비밀번호)을 비밀번호로 사용하는 credental기반의 인증방식을 사용한다.  => 이건 무슨소린지 모르겠다.

 

 

 

 

 

 

 

 

 

 

 


Spring Security

스프링 기반의 애플리케이션의 보안을 담당하는 스프링 하위 프레임워크이다.

스프링 시큐리티는 인증과 권한에 대한 부분을 필터(Filter)의 흐름에 따라 처리하고 있다.

 

 

Spring Security모듈

1) SecuritycontextHolder

2) SecurityContext

3) Authentication

4) UsernamePasswordAuthenticationToken

5) AuthenticationProvider

.. 나중에..  https://mangkyu.tistory.com/76

 

spring security 파헤치기 (구조, 인증과정, 설정, 핸들러 및 암호화 예제, @Secured, @AuthenticationPrincipal, taglib)

https://sjh836.tistory.com/165

 

spring security 파헤치기 (구조, 인증과정, 설정, 핸들러 및 암호화 예제, @Secured, @AuthenticationPrincipal,

참조문서 https://docs.spring.io/spring-security/site/docs/4.2.7.RELEASE/reference/htmlsingle/#getting-started http://springsource.tistory.com/80 https://okky.kr/article/382738 1. 스프링 시큐리티란?..

sjh836.tistory.com

 

[SpringBoot] Spring Security 처리 과정 및 구현 예제

https://mangkyu.tistory.com/77

 

[SpringBoot] SpringBoot로 SpringSecurity 기반의 JWT 토큰 구현하기
https://mangkyu.tistory.com/57

 

[SpringBoot] Spring Security 처리 과정 및 구현 예제
https://mangkyu.tistory.com/77 

 

[Server] 토큰 기반 인증 VS 서버(세션) 기반 인증
https://mangkyu.tistory.com/55

 

[Server] JWT(Json Web Token)란?
https://mangkyu.tistory.com/56

 

 

 

 

 

 


[참조]

https://mangkyu.tistory.com/76

 

[SpringBoot] Spring Security란?

대부분의 시스템에서는 회원의 관리를 하고 있고, 그에 따른 인증(Authentication)과 인가(Authorization)에 대한 처리를 해주어야 한다. Spring에서는 Spring Security라는 별도의 프레임워크에서 관련된 기능

mangkyu.tistory.com

 

https://okky.kr/article/382738

 

OKKY | 초보가 이해하는 스프링 시큐리티

저의 스프링 시큐리티 관련 예제는  깃허브 에서 제공합니다. (주석이 포함된 프로젝트는 주석이 너무 지저분하여 제외...) 1. 스프링 시큐리티란 무엇인가? 스프링 시큐리티를 이해하기 위해서

okky.kr

https://youtu.be/AiDjJzMXWmM

 

반응형