복붙노트

[SPRING] XML 스키마 네임 스페이스 용 Spring NamespaceHandler를 찾을 수 없음 [http://www.springframework.org/schema/security]

SPRING

XML 스키마 네임 스페이스 용 Spring NamespaceHandler를 찾을 수 없음 [http://www.springframework.org/schema/security]

스프링 보안에서 첫 번째 어플리케이션을 개발 중입니다. 내 applicationContext-security.xml 파일은 다음과 같습니다.

<?xml version="1.0" encoding="UTF-8"?>

<!--
  -  Namespace-based OpenID configuration
  -->

<b:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:b="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
                        http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.0.xsd">

    <http>
        <intercept-url pattern="/**" access="ROLE_USER"/>
        <intercept-url pattern="/index.xhtml*" filters="none"/>
        <logout/>
        <openid-login login-page="/index.xhtml" authentication-failure-url="/index.xhtml?login_error=true">
            <attribute-exchange>
                <openid-attribute name="email" type="http://schema.openid.net/contact/email" required="true" count="2"/>
                <openid-attribute name="name" type="http://schema.openid.net/namePerson/friendly" />
            </attribute-exchange>
        </openid-login>
        <remember-me token-repository-ref="tokenRepo"/>
    </http>

    <b:bean id="tokenRepo"
            class="org.springframework.security.web.authentication.rememberme.InMemoryTokenRepositoryImpl" />

    <authentication-manager alias="authenticationManager"/>

    <user-service id="userService">
        <user name="http://user.myopenid.com/" authorities="ROLE_SUPERVISOR,ROLE_USER" />
    </user-service>

</b:beans>

및 Web.xml 파일은 다음과 같습니다.

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">

    <display-name>Spring Security OpenID Demo Application</display-name>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            /WEB-INF/applicationContext-security.xml
        </param-value>
    </context-param>

    <context-param>
        <param-name>log4jConfigLocation</param-name>
        <param-value>/WEB-INF/classes/log4j.properties</param-value>
    </context-param>

    <context-param>
        <param-name>webAppRootKey</param-name>
        <param-value>openid.root</param-value>
    </context-param>

    <filter>
        <filter-name>springSecurityFilterChain</filter-name>
        <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    </filter>

    <filter-mapping>
      <filter-name>springSecurityFilterChain</filter-name>
      <url-pattern>/*</url-pattern>
    </filter-mapping>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <listener>
        <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
    </listener>
     <welcome-file-list>
        <welcome-file>faces/index.xhtml</welcome-file>
    </welcome-file-list>
</web-app>

정리 및 빌드가 성공적이지만 응용 프로그램을 배포하려고하면 다음과 같은 오류가 발생합니다.

모든 것을 시도했지만이 오류를 해결할 수 없습니다. 어떤 도움을 주시면 감사하겠습니다.

편집하다 나는 봄 보안의 3.0.2 버전을 추가하려고 시도했고 이것을 얻었다 :

해결법

  1. ==============================

    1.클래스 경로에 spring-security-config.jar이 필요합니다.

    클래스 경로에 spring-security-config.jar이 필요합니다.

    예외는 security : xml namescape가 spring "파서"에 의해 처리 될 수 없다는 것을 의미합니다. 그것들은 NamespaceHandler 인터페이스의 구현이므로

  2. ==============================

    2.나는 똑같은 문제가 있었다. 유일한 해결책은 META-INF / spring.handler의 내용과 각 spring jar 파일의 META-INF / spring.schemas를 META-INF 프로젝트의 동일한 파일 이름에 병합하는 것입니다.

    나는 똑같은 문제가 있었다. 유일한 해결책은 META-INF / spring.handler의 내용과 각 spring jar 파일의 META-INF / spring.schemas를 META-INF 프로젝트의 동일한 파일 이름에 병합하는 것입니다.

    이 두 가지 스레드는 더 잘 설명합니다.

  3. ==============================

    3.필자의 경우 이것은 maven-jar-plugin에 의해 추가 된 커스텀 매니페스트 엔트리 때문이었다.

    필자의 경우 이것은 maven-jar-plugin에 의해 추가 된 커스텀 매니페스트 엔트리 때문이었다.

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.6</version>
        <configuration>
            <archive>
                <index>true</index>
                <manifest>
                    <addClasspath>true</addClasspath>
                </manifest>
                <manifestEntries>
                    <git>${buildNumber}</git>
                    <build-time>${timestamp}</build-time>
                </manifestEntries>
            </archive>
        </configuration>
    </plugin>
    

    다음 항목을 제거하면 문제가 해결됨

    <index>true</index>
    <manifest>
        <addClasspath>true</addClasspath>
    </manifest>
    
  4. from https://stackoverflow.com/questions/7188719/unable-to-locate-spring-namespacehandler-for-xml-schema-namespace-http-www-sp by cc-by-sa and MIT license