0

Spring 3 は初めてです。Spring でこの名前空間エラーを修正する方法がわかりませんsecurity.xml。実際、私はビーンの周りにプロファイルコードを追加することを結びつけているので、追加するたびに

<beans:beans profile="dev">

複数の注釈がこの行で見つかりました: - cvc-complex- type.2.4.a : 要素 'context:component-scan' で始まる無効なコンテンツが見つかりました。「{"http://www.springframework.org/schema/beans":beans}」のいずれかが期待されます。- org.springframework.transaction.interceptor.TransactionInterceptor.invoke(org.aopalliance.intercept.MethodInvocation) によるアドバイス

.xml のコードは次のとおりです。

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    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.xsd
                    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
                    http://www.springframework.org/schema/security 
                    http://www.springframework.org/schema/security/spring-security-3.1.xsd">


   <beans:beans profile="dev">  **( This is code that generates error)**
    <beans:bean id="loggerListener" class="org.springframework.security.authentication.event.LoggerListener"/>
    </beans:bean>
4

2 に答える 2

0

これを使って

<beans:beans xmlns="http://www.springframework.org/schema/security"
  xmlns:beans="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.1xsd">


   <beans:beans profile="dev">  
    <beans:bean id="loggerListener" class="org.springframework.security.authentication.event.LoggerListener"/>
    </beans:bean>

</beans>
于 2013-02-03T07:36:13.280 に答える