- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用基本身份验证配置我的网络应用程序。但是在我配置了 spring-security.xml 后,Web 应用程序无法再在 Tomcat 上启动。
它抛出异常如下:
Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/security]
Offending resource: ServletContext resource [/WEB-INF/spring-security.xml]
at org.springframework.beans.factory.parsing.FailFastProblemReporter.error(FailFastProblemReporter.java:70)
at org.springframework.beans.factory.parsing.ReaderContext.error(ReaderContext.java:85)
at org.springframework.beans.factory.parsing.ReaderContext.error(ReaderContext.java:80)
at org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.error(BeanDefinitionParserDelegate.java:301)
at org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.parseCustomElement(BeanDefinitionParserDelegate.java:1408)
at org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.parseCustomElement(BeanDefinitionParserDelegate.java:1401)
at org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.parseBeanDefinitions(DefaultBeanDefinitionDocumentReader.java:168)
at org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.doRegisterBeanDefinitions(DefaultBeanDefinitionDocumentReader.java:138)
at org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.registerBeanDefinitions(DefaultBeanDefinitionDocumentReader.java:94)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.registerBeanDefinitions(XmlBeanDefinitionReader.java:508)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:392)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:336)
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:304)
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:181)
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:217)
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:188)
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:125)
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:94)
at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:129)
at org.springframework.context.support.AbstractApplicationContext.obtainFreshBeanFactory(AbstractApplicationContext.java:604)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:509)
at org.springframework.web.context.ContextLoader.configureAndRefreshWebApplicationContext(ContextLoader.java:446)
at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:328)
at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:107)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4729)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5167)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1408)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1398)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
另一个异常如下:
Exception sending context destroyed event to listener instance of class org.springframework.web.context.ContextLoaderListener
java.lang.IllegalStateException: BeanFactory not initialized or already closed - call 'refresh' before accessing beans via the ApplicationContext
at org.springframework.context.support.AbstractRefreshableApplicationContext.getBeanFactory(AbstractRefreshableApplicationContext.java:170)
at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:997)
at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:973)
at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:925)
at org.springframework.web.context.ContextLoader.closeWebApplicationContext(ContextLoader.java:583)
at org.springframework.web.context.ContextLoaderListener.contextDestroyed(ContextLoaderListener.java:116)
at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.java:4776)
at org.apache.catalina.core.StandardContext.stopInternal(StandardContext.java:5390)
at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:232)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:160)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1408)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1398)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
我根据之前的回答查了几个方面。
pom.xml
<spring.security.version>3.2.5.RELEASE</spring.security.version>
....
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${spring.security.version}</version>
</dependency>
web.xml
<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>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/mvc-dispatcher-servlet.xml
/WEB-INF/spring-security.xml
</param-value>
</context-param>
spring-security.xml
<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-4.2.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.2.xsd">
<http auto-config="true">
<intercept-url pattern="/**" access="ROLE_USER,ROLE_ADMIN" />
<http-basic />/
</http>
<authentication-manager>
<authentication-provider>
<user-service>
<user name="damonqu" authorities="ROLE_USER, ROLE_ADMIN"
password="eifdadfdafjklnndl23ji1" />/>
</user-service>
</authentication-provider>
</authentication-manager>
你对此有什么想法吗?
最佳答案
http-basic 配置末尾有一个不必要的/。您可以删除下面一行中的最后一个斜杠吗?
<http-basic />/
关于java - Spring Security 配置无法找到 NameSpaceHandler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32176509/
org.mule.api.lifecycle.InitialisationException: Initialisation Failure: Configuration problem: Unabl
我正在尝试使用基本身份验证配置我的网络应用程序。但是在我配置了 spring-security.xml 后,Web 应用程序无法再在 Tomcat 上启动。 它抛出异常如下: Exception se
我已经为这个问题奋斗了几天,我真的很绝望。我正在升级的遗留项目在 Tomcat 启动期间给我以下错误消息: Configuration problem: Unable to locate Namesp
当我使用 spring v.3.1 执行我的 java 项目时,出现以下错误: Bean 'configParser'; nested exception is org.springframework
这个错误我已经有将近一周的时间了,我正准备放弃。我已经使用 Maven2 制作了 BIG jar 文件。当我使用以下方式运行 jar 文件时: java -jar someJar.jar 我收到此错
我正在使用 SpringSource Tool Suite 开发一个 spring webflow (2.0.7) 项目。我正在尝试设置基本流程。 我的 someflow.xml 看起来像这样:
尝试在Tomcat 6上运行应用程序时遇到Spring 3.1命名空间问题: GRAVE: Exception sending context initialized event to listene
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: Spring BeanDefinitionParsingException SEVERE: StandardWrap
在成功尝试实现我自己的蓝图拦截器以使用命名空间处理程序跟踪方法进入/退出之后,我现在正在寻找增强它的方法,其中拦截器本身被定义为同一蓝图 xml 中的另一个 bean,并且我的命名空间元素使用 ref
引起:org.springframework.beans.factory.parsing.BeanDefinitionParsingException:配置问题:无法为 XML 模式命名空间找到 Sp
当我尝试运行一个简单的应用程序 (JPA + Hibernate + Maven) 时出现以下错误。当我将 war 文件部署到应用程序服务器时它工作正常,但它在我的 IDE (Eclipse) 中不起
我想使用 Spring 实现 Oracle Pooling DataSource,如下所述: http://docs.spring.io/spring-data/jdbc/docs/current/r
我在 eclipse 中的 tomcat 中运行一些 servlet 代码。它一直工作正常,但今天我收到错误 Unable to locate Spring NamespaceHandler for
在运行时,我的代码在终端上出现此错误 线程“main”中的异常 java.lang.RuntimeException:org.springframework.beans.factory.parsing
我正在使用 Spring 创建一个独立的 Sava 应用程序,以处理 JDBC 访问。该应用程序在每次测试中都能正常运行,我决定需要一个 jar 来部署我们的客户端。 他们的类路径中可能没有 spri
我一遍又一遍地收到此错误: 10:37:21,270 ERROR DispatcherServlet:466 - Context initialization failed org.springfra
*强文本*我在运行 Java SE +Spring 应用程序时遇到以下错误。我在互联网和这个网站上发现了类似的问题,但找不到正确的解决方案。我认为问题是缺少jar文件。 Exception in th
我正在尝试在 Spring Boot 2.1.7 应用程序中配置 ActiveMQ 代理,特别是启用 statsBrokerPlugin。 我的activemq.xml:
我正在尝试使用 Eclipse 创建我的第一个 Spring/Maven Web 应用程序,但我在 spring-security.xml 配置文件中收到此警告,这几天来一直让我抓狂! 我尝试从其他人
[http://www.springframework.org/schema/tx] 我将 jar 文件包含在 maven pom.xml 中。当我从 Eclipse 中运行 swing 应用程序时,
我是一名优秀的程序员,十分优秀!