Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JPA
- jquery
- Security
- mybatis
- 스프링
- 방법
- 에러
- 시큐리티
- JavaScript
- Git
- 넥사크로
- 프로그래머스
- Java
- 생성
- 함수
- aws
- Spring
- 자바
- Eclipse
- 알고리즘
- 쿼리
- 코틀린
- db
- error
- Vue
- 오라클
- GitHub
- kotlin
- oracle
- IntelliJ
Archives
- Today
- Total
목록Spring (40)
송민준의 개발노트
[Spring Security] Authentication
보호되어 있는 글입니다.
웹/Spring Security
2021. 1. 17. 21:16
[Spring Security] 다중 설정 클래스
보호되어 있는 글입니다.
웹/Spring Security
2021. 1. 17. 14:46
[Spring Security] DelegatingFilterProxy
보호되어 있는 글입니다.
웹/Spring Security
2021. 1. 16. 05:17
[Spring Security] CSRF
보호되어 있는 글입니다.
웹/Spring Security
2021. 1. 15. 20:40
[Spring Security] ExceptionTranslationFilter
보호되어 있는 글입니다.
웹/Spring Security
2021. 1. 14. 12:55
[Spring Security] AnonymousAuthenticationFilter
보호되어 있는 글입니다.
웹/Spring Security
2021. 1. 11. 20:58
[Spring Security] Remember Me - 동작과정(도표)
보호되어 있는 글입니다.
웹/Spring Security
2021. 1. 11. 01:33
[Spring Security] Remember Me
@Autowired UserDetailsService memberService; @Override protected void configure(HttpSecurity http) throws Exception{ ~~~ http.rememberMe() .rememberMeParameter("remember-me") // default는 remember-me -> 커스텀 가능(체크박스와 이름 동일하게) .tokenValiditySeconds(5000) // default는 14일, 현재 5000초 설정해놨음 .alwaysRemember(true) // default false, 기능이 활성화되지 않아도 항상 실행여부 .userDetailsService(memberService); // 확인해주는 클래스 넣어줌..
웹/Spring Security
2021. 1. 8. 12:49