일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 함수
- kotlin
- oracle
- jquery
- 자바
- Vue
- 코틀린
- 넥사크로
- GitHub
- JPA
- Security
- 방법
- 프로그래머스
- IntelliJ
- db
- JavaScript
- 에러
- Spring
- 생성
- 알고리즘
- 시큐리티
- Git
- mybatis
- aws
- 쿼리
- Java
- error
- Eclipse
- 스프링
- 오라클
- Today
- Total
목록Security (23)
송민준의 개발노트
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
@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); // 확인해주는 클래스 넣어줌..
Security Config에서 Form Login 인증 방식은 아래와 같이 처리해주면 된다. 본 방식은 Java Config이다. @Override protected void configure(HttpSecurity http) throws Exception { http .formLogin() // 로그인 폼 세팅 .loginPage("/members/loginform") // 사용자 정의 로그인 페이지 .usernameParameter("email") // name 속성이 userId, password 일치하여야 함 .passwordParameter("pwd") .loginProcessingUrl("/authenticate") // 로그인 프로세스를 처리하는 경로(submit url) .failureF..