반응형
Spring Security를 이용하는 페이지 작업 시 csrf 토큰을 넣기 위하여
아래와 같은 taglib을 사용해야 한다. (input hidden으로 박아넣겠다면 굳이 없어도 되겠지만..)
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
pom.xml에 의존성 주입을 jstl과 tomcat-embed-jasper만 넣어놓으면,
JasperException이 발생하며, tags를 가져오지 못했다고 뭐라뭐라 한다.
이런 경우 pom.xml에 아래와 같은 의존성을 주입해주면 해결이 된다.
<dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId> </dependency>
Spring Security가 제공해주는 Role의 신세계를 경험하기 위해 테스트를 하는데,
이건 뭐 의존성이 장난이 아니다..;;
반응형
'개발 > Spring Framework' 카테고리의 다른 글
[Spring Framework] @ModelAttribute 사용 시 Constructor 에러 (0) | 2016.06.10 |
---|---|
[Spring Boot] boot에서 jsp 사용하기 (0) | 2016.06.10 |
[Spring Boot] WebApplication ComponentScan (0) | 2016.06.10 |
[Spring Security] UserDetailService wrapping (0) | 2016.06.10 |
[Spring Boot] jar로 패키징 시 daemon화 시키기 (0) | 2016.06.10 |