ファイルに問題がありspring-security.xml
ます。いくつかのセッション設定を構成し、まずゲストとログインしているユーザーを維持するためのログイン フォームを作成したいと考えていました。
これは私のspring-security.xml
見出しです:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:security="http://www.springframework.org/schema/security"
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.1.xsd">
ご覧のとおり、Spring Security を最新バージョンの 3.1 で使用しています。スキーマのバージョンを低く変更しようとすると、エラーが発生します。バージョン 3.1 に関しては、Eclipse で黄色の警告しか表示されません。
私のhttp
タグは次のようになります。
<security:http auto-config='true'>
<security:intercept-url pattern="/wellcome*" access="ROLE_USER" />
<security:form-login login-page="/login" default-target-url="/wellcome" authentication-failure-url="/loginfailed" />
<security:logout logout-success-url="/logout" />
<security:session-management invalid-session-url="/invalidsession" />
</security:http>
このタグの最初の行には、長い警告リストがあります。
Multiple annotations found at this line:
- Method 'setAuthenticationEntryPoint' is marked deprecated [config set: SpringMVC/web-context]
- Method 'setSessionAuthenticationStrategy' is marked deprecated [config set: SpringMVC/web-
context]
- Method 'setUserAttribute' is marked deprecated [config set: SpringMVC/web-context]
- Method 'setRequestCache' is marked deprecated [config set: SpringMVC/web-context]
- Method 'setKey' is marked deprecated [config set: SpringMVC/web-context]
- Method 'setSecurityContextRepository' is marked deprecated [config set: SpringMVC/web-context]
さらに、3行目に警告が1つあります。
Method 'setLoginFormUrl' is marked deprecated [config set: SpringMVC/web-context]
Spring Security 3.1 でタグspring-security.xml
付きのファイルを適切に定義する方法を説明してもらえますか?http