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"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-2.5.xsd
    http://www.springframework.org/schema/security
    http://www.springframework.org/schema/security/spring-security-2.0.1.xsd">

<bean id="messageBoardService" 
    class="com.service.MessageBoardServiceImpl">
    <security:intercept-methods>
    <security:protect 
        method="com.service.MessageBoardService.listMessages"
        access="ROLE_USER,ROLE_GUEST" />
    <security:protect 
        method="com.service.MessageBoardService.postMessage"
        access="ROLE_USER" />
    <security:protect 
        method="com.service.MessageBoardService.deleteMessage"
        access="ROLE_ADMIN,IP_LOCAL_HOST" />
    <security:protect 
        method="com.service.MessageBoardService.findMessageById"
        access="ROLE_USER,ROLE_GUEST" />
    </security:intercept-methods>
</bean>

上記のコード行を実行すると、エラーが表示されます

一致するワイルドカードは厳密ですが、要素「bean」の宣言が見つかりません

セキュリティインターセプトメソッドタグに赤い下線を引く

ここにjarファイルのリストがありますここに画像の説明を入力

4

1 に答える 1

0

このヘッダーは、xml ファイルに追加されます。それは正しく動作します

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:security="http://www.springframework.org/schema/security"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-2.0.1.xsd">
于 2015-04-15T11:55:16.110 に答える