일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ORM
- JavaScript
- 권한
- 자바
- RAISERRR
- IT
- SSMS
- IT story
- 스프링 시큐리티
- System.Text.Json
- java
- SQL Server
- SQL Server 구성 관리자
- git
- 스프링부트
- jpa
- 데이터베이스
- cors
- SOP
- MSSQL
- C#
- ERROR_MESSAGE
- springboot
- 프로시저
- Exception in thread "main" java.lang.Error
- sql server manager
- OUT 파라미터
- github
- .NET 8.0
- Newtonsoft.Json
- Today
- Total
목록스프링 시큐리티 (2)
its_jh_stroy
Spring Security를 통해 인증된 사용자 권한을 기반으로 프로그램을 제어할 수 있다.권한 제어를 위해서는 인증 기능이 구현되어야 하므로 아래 포스팅 소스에 이어서 작성할 것이다.[Springboot] Spring Security로 인증과 권한 부여 (tistory.com) [Springboot] Spring Security로 인증과 권한 부여Spring Security에 대해 공식 문서에서는 아래와 같이 정의한다.Spring Security is a powerful and highly customizable authentication and access-control framework. It is the de-facto standard for securing Spring-based applica..
Spring Security에 대해 공식 문서에서는 아래와 같이 정의한다.Spring Security is a powerful and highly customizable authentication and access-control framework. It is the de-facto standard for securing Spring-based applications. 커스터마이징이 가능한 인증과 접근 제어를 제공하는 사실상 표준이라고 되어있다.인증이란 사용자가 누구인지 확인하는 것이고, 접근 제어는 권한 부여(authorization)를 의미한다.인증과 권한 부여를 조금 더 쉽게 구현할 수 있도록 도와주는 것이다. Spring Security를 이용한 로그인 인증 구현하기로그인을 구현하는 방식은 대표적..