Notice
Recent Posts
Recent Comments
Link
- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
[spring security] Spring Security 를 이용하여 로그인여부 화면에 표시하기 본문
Spring Security 를 이용하여 로그인여부 화면에 표시하기
Spring Security 3.1 에서 아래와 같은 코드를 화면에 적용하여 로그인 여부를 구분할 수 있습니다.
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
<sec:authorize access="isAnonymous()">
<a href="/login" target="_self">Login</a>
</sec:authorize>
<sec:authorize access="isAuthenticated()">
<a href="/logout" target="_self">Logout</a>
</sec:authorize>
'Spring' 카테고리의 다른 글
사용자 패스워드 암호화 (0) | 2013.11.29 |
---|---|
[Spring] Excel 파일 다운로드 (Spring Excel View 구현) (0) | 2013.10.25 |
SpringDM 으로 SpringMVC 환경 구성하기 (0) | 2013.10.17 |
"쉽게 따라하는 자바웹개발" project error/warning 없애기. (2) | 2013.10.17 |
request.getAttribute("javax.servlet.forward.request_uri"), request.getAttribute("javax.servlet.forward.path_info") (0) | 2013.10.14 |
Comments