spring security를 이용해 로그인 시스템 만들기 (1)
프로그래밍 2014. 4. 1. 18:11
Spring Security
url마다 유저인증과 권한 설정을 할 수 있다.
맛보기
1) pom.xml에 org.springframework-version버전과 security 설정 추가
2) web.xml에 security-context.xml과 filter 추가
3) security-context.xml 생성
4) 웹서버 가동을 하면 다음과 같이 로그인 페이지가 자동으로 뜬다.
guest로 로그인을 하면 된다.
spring security는 커스터마이징을 할 수 있다.
다음에는 디비에 저장되어 있는 유저 계정과 로그인 페이지를 입맛에 맞게 변경해보자