私は春のセキュリティで新しいです、私はチュートリアルですべてを終えましたが、私はこの例外を受け取りました。
私はシンプルなSpring Security + JSF Webアプリを持っています:
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/security-config.xml</param-value>
</context-param>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--JSF -->
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
</web-app>
security-config.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.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security.xsd">
<security:http>
<security:intercept-url pattern="/admin" access="ROLE_USER"/>
</security:http>
<security:authentication-manager>
<security:authentication-provider>
<security:user-service>
<security:user name="sajjad" password="414141" authorities="ROLE_USER"/>
</security:user-service>
</security:authentication-provider>
</security:authentication-manager>
</beans>
spring-config.xml
は空です。
私の依存関係は次のとおりです。
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>
<!-- Spring Security -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>4.0.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>4.0.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>4.0.1.RELEASE</version>
</dependency>
しかし、アプリケーションを実行するとこの例外が発生します:
25-May-2015 02:35:11.113 SEVERE [RMI TCP Connection(3)-127.0.0.1] org.Apache.catalina.core.StandardContext.startInternal Error listenerStart
25-May-2015 02:35:11.114 SEVERE [RMI TCP Connection(3)-127.0.0.1] org.Apache.catalina.core.StandardContext.startInternal Context [] startup failed due to previous errors
25-May-2015 02:35:11.125 WARNING [RMI TCP Connection(3)-127.0.0.1] org.springframework.web.context.support.XmlWebApplicationContext.doClose Exception thrown from ApplicationListener handling ContextClosedEvent
Java.lang.IllegalStateException: ApplicationEventMulticaster not initialized - call 'refresh' before multicasting events via the context: Root WebApplicationContext: startup date [Mon May 25 02:35:09 GMT+03:30 2015]; root of context hierarchy
at org.springframework.context.support.AbstractApplicationContext.getApplicationEventMulticaster(AbstractApplicationContext.Java:344)
at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.Java:331)
at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.Java:869)
at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.Java:836)
at org.springframework.web.context.ContextLoader.closeWebApplicationContext(ContextLoader.Java:579)
...
5-May-2015 02:35:11.127 WARNING [RMI TCP Connection(3)-127.0.0.1] org.springframework.web.context.support.XmlWebApplicationContext.doClose Exception thrown from LifecycleProcessor on context close
Java.lang.IllegalStateException: LifecycleProcessor not initialized - call 'refresh' before invoking lifecycle methods via the context: Root WebApplicationContext: startup date [Mon May 25 02:35:09 GMT+03:30 2015]; root of context hierarchy
at org.springframework.context.support.AbstractApplicationContext.getLifecycleProcessor(AbstractApplicationContext.Java:357)
at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.Java:877)
[〜#〜] update [〜#〜]
同じ問題が発生しました。これは、Java 8をいくつかのスプリング依存性と組み合わせて使用したために発生しました。これを把握していないが、Java 7 。
Springを使用し、専用の依存関係ファイル「pom.xml」を使用する代わりに、プロジェクトプロパティに外部Jarを手動で追加すると、このエラーが発生する可能性があります。
正しいバージョンのSpringとその依存関係を正しいバージョンのTomcatにデプロイします。たとえば、Tomcat 7ではなくTomcat 8でJersey 2.22を使用したSpring 3.2、Tomcat 7でJersey 2を使用したSpring 3.0を参照してください。
プロジェクトに古いバージョンのTomcatを使用していて、同じエラーが発生していました。 Tomcat 9に更新し、正常に動作するようになりました。これらのシステムの相互の互換性に従ってバージョンを更新する必要があります。
私にとっては、非依存の依存関係を導入した依存関係が原因でした。不要なルート依存関係を除外する必要がありました。
<exclusions>
<!-- Otherwise, Webapp doesn't start up -->
<exclusion>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-grizzly2-http</artifactId>
</exclusion>
<exclusion>
<groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring3</artifactId>
</exclusion>
</exclusions>
私も最近この例外に遭遇しました。私にとっては、スプリングポッドをkubernetesクラスターにデプロイしようとしたときに、スプリングが正常に起動してヘルスチェックに応答する前にポッドが殺されていました。
私にとっての修正は、ヘルスチェックエンドポイントをチェックする前に遅延を増やすことでした。
このエラーが表示された場合、起動中に何かが春を殺しているかどうかを確認する価値があるかもしれません
サーバーでプロジェクトを削除して再追加すると、問題を解決するのに役立ちました
私はこの例外に遭遇し、私の場合、ソリューションは私のDAO実装の1つで@Repository( "the typo was here")タグのタイプミスを修正していました