[SPRING] JSF에서 Spring Security Facelets 태그 라이브러리를 사용하는 방법
SPRINGJSF에서 Spring Security Facelets 태그 라이브러리를 사용하는 방법
내 UI 구성 요소를 보호하기 위해 Spring Security Facelets 태그 라이브러리를 사용하고 싶습니다. 내 JSF 2 페이지
나는 스프링 보안 버전 3.0.5에 대해 다음과 같은 의존성을 가지고있다.
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${spring-security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>${spring-security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${spring-security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>${spring-security.version}</version>
</dependency>
나는 봄 보안 로그인을 만들기 위해 applicationSecurity.xml을 구성했다. UserDetailsService를 사용하여 보안 정의를 추가하려고 할 때 :
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ice="http://www.icesoft.com/icefaces/component"
xmlns:pretty="http://ocpsoft.com/prettyfaces"
xmlns:sec="http://www.springframework.org/security/tags">
그리고 응용 프로그램을 실행할 때, 나는 다음과 같은 오류가 발생했습니다 :
Warning: This page calls for XML namespace http://www.springframework.org/security/tags declared with prefix sec but no taglibrary exists for that namespace.
참조 : http://static.springsource.org/spring-security/site/petclinic-tutorial.html
제발 조언.
해결법
-
==============================
1.먼저 springsecurity.taglib.xml을 추가해야합니다. 언급 한 바와 같이
먼저 springsecurity.taglib.xml을 추가해야합니다. 언급 한 바와 같이
http://docs.spring.io/autorepo/docs/webflow/2.3.x/reference/html/spring-faces.html#spring-faces-security-taglib
그것을 사용하기 위해서는 classpath에 org.springframework.faces jar가 있어야합니다.
다음과 같이 보안 태그를 사용하십시오.
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional/<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:sec="http://www.springframework.org/security/tags">
참고
-
==============================
2.성공적으로 구현되었습니다.
성공적으로 구현되었습니다.
일반적인 스프링 보안 의존성에 더해서 다음과 같은 두 가지 추가 Maven 의존성이 필요합니다.
<dependency> <groupId>org.springframework.webflow</groupId> <artifactId>spring-faces</artifactId> <version>2.4.1.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId> <version>3.2.6.RELEASE</version> </dependency>
귀하의 POM 파일에.
JSF 2의 경우 다음을 /WEB-INF/springsecurity.taglib.xml로 저장하십시오.
<?xml version="1.0"?> <!DOCTYPE facelet-taglib PUBLIC "-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN" "http://java.sun.com/dtd/facelet-taglib_1_0.dtd"> <facelet-taglib> <namespace>http://www.springframework.org/security/tags</namespace> <tag> <tag-name>authorize</tag-name> <handler-class>org.springframework.faces.security.FaceletsAuthorizeTagHandler</handler-class> </tag> <function> <function-name>areAllGranted</function-name> <function-class>org.springframework.faces.security.FaceletsAuthorizeTagUtils</function-class> <function-signature>boolean areAllGranted(java.lang.String)</function-signature> </function> <function> <function-name>areAnyGranted</function-name> <function-class>org.springframework.faces.security.FaceletsAuthorizeTagUtils</function-class> <function-signature>boolean areAnyGranted(java.lang.String)</function-signature> </function> <function> <function-name>areNotGranted</function-name> <function-class>org.springframework.faces.security.FaceletsAuthorizeTagUtils</function-class> <function-signature>boolean areNotGranted(java.lang.String)</function-signature> </function> <function> <function-name>isAllowed</function-name> <function-class>org.springframework.faces.security.FaceletsAuthorizeTagUtils</function-class> <function-signature>boolean isAllowed(java.lang.String, java.lang.String)</function-signature> </function> </facelet-taglib>
위의 파일을 web.xml에 등록하십시오.
<context-param> <param-name>javax.faces.FACELETS_LIBRARIES</param-name> <param-value>/WEB-INF/springsecurity.taglib.xml</param-value> </context-param>
경고가없는 taglibrary가 해결되고 이제보기에서 태그 라이브러리를 사용할 준비가되었습니다. authorize 태그를 사용하여 중첩 된 컨텐트를 조건부로 포함 할 수 있습니다.
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:sec="http://www.springframework.org/security/tags"> <sec:authorize ifAllGranted="ROLE_FOO, ROLE_BAR"> Lorem ipsum dolor sit amet </sec:authorize> <sec:authorize ifNotGranted="ROLE_FOO, ROLE_BAR"> Lorem ipsum dolor sit amet </sec:authorize> <sec:authorize ifAnyGranted="ROLE_FOO, ROLE_BAR"> Lorem ipsum dolor sit amet </sec:authorize> </ui:composition>
REFERENCE : https://docs.spring.io/spring-webflow/docs/2.3.x/reference/html/spring-faces.html#spring-faces-security-taglib
-
==============================
3.JSF가 Spring MVC와 마찬가지로 쉽지는 않습니다 ...
JSF가 Spring MVC와 마찬가지로 쉽지는 않습니다 ...
하지만이 버그 보고서에서 할 수있는 방법을 찾을 수 있습니다.
https://jira.springsource.org/browse/SWF-1333
Rossen Stoyanchev의 마지막 메시지
from https://stackoverflow.com/questions/7915134/how-to-use-the-spring-security-facelets-tag-library-in-jsf by cc-by-sa and MIT license
'SPRING' 카테고리의 다른 글
[SPRING] Spring REST 여러 개의 @RequestBody 매개 변수가 가능합니까? (0) | 2019.01.03 |
---|---|
[SPRING] 내장 된 Tomcat 세션 클러스터링을 사용하여 스프링 부트 응용 프로그램을 설치하는 방법은 무엇입니까? (0) | 2019.01.03 |
[SPRING] Spring Cloud Configuration Server가 로컬 속성 파일로 작동하지 않습니다. (0) | 2019.01.02 |
[SPRING] Spring MVC의 서블릿 매핑에서 url 패턴 디렉토리의 루트를 어떻게 매핑 할 수 있습니까? (0) | 2019.01.02 |
[SPRING] JSP에서 List 객체 반복하기 (0) | 2019.01.02 |