0

重複の可能性:
Spring を使用した security.xml の奇妙なエラー

問題が発生しました。jsf 1.2 で spring-security 3.1 を使用しており、ユーザーのソースとしてデータベースを使用しようとしています。

これは application-context.xml の一部です

コンソール エラー: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: ServletContext リソース [/WEB-INF/applicationContext.xml] からの XML ドキュメントの 19 行目が無効です。ネストされた例外は org.xml.sax.SAXParseException です。行番号: 19; 列番号: 94; 要素「b:bean」の接頭辞「b」はバインドされていません。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:security="http://www.springframework.org/schema/security"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:jee="http://www.springframework.org/schema/jee"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:jdbc="http://www.springframework.org/schema/jdbc"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd">
  
    <b:bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <beans:property name="driverClassName" value="org.postgresql.Driver" />
        <beans:property name="url" value="jdbc:postgresql://localhost/protopaie" />
        <beans:property name="username" value="??????" />
        <beans:property name="password" value="??????" />
    </b:bean>

    <security:http auto-config="true">
    
        <security:intercept-url pattern="/loginUtilisateur.jsf"
                            access="IS_AUTHENTICATED_ANONYMOUSLY"/>
        <security:intercept-url pattern="/images/**" access="IS_AUTHENTICATED_ANONYMOUSLY"/>
        <security:intercept-url pattern="/css/**" access="IS_AUTHENTICATED_ANONYMOUSLY"/>
        <security:intercept-url pattern="/js/**" access="IS_AUTHENTICATED_ANONYMOUSLY"/>
    
        <security:intercept-url pattern="/accessDenied.jsp"
                            access="IS_AUTHENTICATED_ANONYMOUSLY"/>
        <security:intercept-url pattern="/**" access="ROLE_FORMATEUR"/>
    
    <security:form-login
        login-processing-url="/j_spring_security_check"
        login-page="/loginUtilisateur.jsf"
        authentication-failure-url="/accessDenied.jsp" 
        default-target-url="/pages/gestionAdministration/accueil/pageAccueil.jsf"/>
    <!--<security:logout logout-success-url="/index.jsf"/>-->
    </security:http>

</beans>
4

0 に答える 0