Barebonds Hello World Example をセキュリティ付きでセットアップしようとしています。しかし、エラーが発生し続けます。
ここに私のweb.xmlがあります:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>MyFlow</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-config.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value></param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>
org.springframework.web.filter.DelegatingFilterProxy
</filter-class>
</filter>
</web-app>
ここに私の spring-security.xml ファイルがあります:
<?xml version="1.0" encoding="UTF-8"?>
<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-3.1.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd">
<security:http>
<security:form-login />
<security:http-basic />
<security:logout />
<security:intercept-url pattern="/**" access="ROLE_MEMBER" />
</security:http>
<security:user-service id="userService">
<security:user name="habuma" password="letmein"
authorities="ROLE_MEMBER,ROLE_ADMIN" />
<security:user name="twoqubed" password="longhorns"
authorities="ROLE_MEMEBER" />
<security:user name="admin" password="admin"
authorities="ROLE_ADMIN" />
</security:user-service>
</beans>
以下は私のエラーです....私を助けてください:
2012-07-25 15:54:46,607 [pool-2-thread-1] エラー org.springframework.web.context.ContextLoader - コンテキストの初期化に失敗しました
org.springframework.beans.factory.BeanCreationException: 'org.springframework.security.filterChains' という名前の Bean の作成中にエラーが発生しました: Bean プロパティ 'sourceList' の設定中に Bean 'org.springframework.security.web.DefaultSecurityFilterChain#0' への参照を解決できませんキー付き [0]; ネストされた例外は
org.springframework.beans.factory.BeanCreationException: 'org.springframework.security.web.DefaultSecurityFilterChain#0' という名前の Bean の作成中にエラーが発生しました: Bean 'org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#0' への参照を解決できませんキー[2]でコンストラクター引数を設定します。ネストされた例外は
org.springframework.beans.factory.BeanCreationException: 'org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#0' という名前の Bean の作成中にエラーが発生しました: Bean 'org.springframework.security.authentication.ProviderManager#0' への参照を解決できませんBean プロパティ 'authenticationManager' を設定します。ネストされた例外は
org.springframework.beans.factory.BeanCreationException: 'org.springframework.security.authentication.ProviderManager#0' という名前の Bean の作成中にエラーが発生しました: Bean 'org.springframework.security.config.authentication.AuthenticationManagerFactoryBean#0' への参照を解決できませんコンストラクタ引数の設定; ネストされた例外は
org.springframework.beans.factory.BeanCreationException: 'org.springframework.security.config.authentication.AuthenticationManagerFactoryBean#0' という名前の Bean の作成中にエラーが発生しました: FactoryBean がオブジェクトの作成時に例外をスローしました。ネストされた例外は
org.springframework.beans.factory.NoSuchBeanDefinitionException: 'org.springframework.security.authenticationManager' という名前の Bean が定義されていません: 構成にグローバル要素を (子要素と共に) 追加するのを忘れましたか? あるいは、要素と要素で authentication-manager-ref 属性を使用できます。
org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:328) で