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
- jsp에러
- hit desktop
- IAM 결제
- Update
- servlet에러
- hmlt
- html사용자함수
- bootstrap
- JPA
- AWS요금
- oracle 18
- 오라클 c##제거
- 깃헙 데스크탑
- IP통신
- AWS사용자
- springboot
- AWS 청구
- html주문폼
- MFC
- TCP/IP
- 소켓통신
- git stah
- web browser external
- C++
- aws
- SpringToolSuite4
- jsNature
- javasecurity
- AWS경보
- js구구단
Archives
- Today
- Total
Ynns
spring security 프로젝트(4) 본문
//게시판 security login//
security-context.xml
<!-- 비밀번호 암호화 빈 -->
<bean id="bcryptPasswordEncoder" class ="org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder"></bean>
<!-- 인증된 암호화를 담은 객체 -->
<bean id="userDetail" class="com.spring.security.CustomUserDetailsService"></bean>
<!-- 로그인 성공 후 Handler -->
<bean id="customLoginSuccess" class="com.spring.security.CustomLoginSuccessHandler"></bean>
<!-- 게시글 목록 보기는 보안 해제, 게시글 보기는 보안 설정 -->
<security:http pattern="/board/getList" security="none" />
<security:http>
<security:intercept-url pattern="/board/*" access="hasAnyRole('ROLE_USER','ROLE_MEMBER','ROLE_ADMIN')"/> <!-- board 아래 주소는 모두 권한이 있는지 확인한다 -->
<security:form-login login-page="/member/signin" authentication-success-handler-ref="customLoginSuccess"/><!-- 제한조건에 맞지 않는 요청을 하면 로그인 페이지를 찾음 -->
</security:http>
<security:authentication-manager>
<security:authentication-provider user-service-ref="userDetail">
<!-- 사용자가 비밀번호 입력 시 인코딩을 한 뒤 암호화 된 비밀번호를 받음 -->
<security:password-encoder ref="bcryptPasswordEncoder"/>
</security:authentication-provider>
</security:authentication-manager>
signin.jsp / signin.css 추가
컨트롤러 추가
CommonController 추가
@GetMapping("/member/signin")
public void loginForm() {
log.info("로그인 페이지 요청");
}
@PreAuthorize
@PostAutorize
@Secured
==>servlet-context.xml에 기록, 활성화
<!-- @PreAuthorize @PostAutorize @Secured -->
<security:global-method-security pre-post-annotations="enabled" secured-annotations="enabled" />
'JAVA > Spring' 카테고리의 다른 글
spring security 프로젝트 (6) 중간 실행 (0) | 2019.11.26 |
---|---|
spring security 프로젝트(5) 어노테이션 (0) | 2019.11.26 |
spring 프로젝트 암호화 로그인 오류 해결 (0) | 2019.11.14 |
spring security 프로젝트 (3) (0) | 2019.11.08 |
spring security 프로젝트 (2) (0) | 2019.11.08 |
Comments