无法找到 Spring NamespaceHandler 错误

Posted

技术标签:

【中文标题】无法找到 Spring NamespaceHandler 错误【英文标题】:unable to locate Spring NamespaceHandler error 【发布时间】:2013-02-13 04:13:50 【问题描述】:

这个错误我已经有将近一周的时间了,我正准备放弃。 我已经使用 Maven2 制作了 BIG jar 文件。当我使用以下方式运行 jar 文件时:

 java -jar someJar.jar

我收到此错误:

 ERROR: [27/55/13 10:55] Launcher: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/context]
 Offending resource: class path resource [JavaProjectApplicationContext.xml]

JavaProjectApplicationContext.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:context="http://www.springframework.org/schema/context"
   xmlns:jee="http://www.springframework.org/schema/jee"
   xsi:schemaLocation="http://www.springframework.org/schema/beans 
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-3.0.xsd
       http://www.springframework.org/schema/jee
       http://www.springframework.org/schema/jee/spring-jee-3.0.xsd"> 

<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location"><value>deployment.properties</value></property>
</bean>

<bean id="LexEditorDataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName"><value>$hibernate.jdbc_driver</value></property>
<property name="username"><value>$hibernate.username</value></property>
<property name="password"><value>$hibernate.password</value></property>
<property name="url"><value>$hibernate.url</value></property>
<property name="defaultAutoCommit"><value>$hibernate.default_auto_commit</value>   </property>
<property name="maxActive"><value>20</value></property>
<property name="maxIdle"><value>3</value></property>
 <property name="testOnBorrow"><value>true</value></property>
<property name="testOnReturn"><value>true</value></property>
<property name="testWhileIdle"><value>true</value></property>
</bean>

 <context:component-scan base-package="com.k_int.bank.plugin">
    <context:include-filter type="annotation" expression="org.springframework.stereotype.Service"/>
 </context:component-scan>

  <bean id="ThesSessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
   <property name="dataSource"><ref local="LexEditorDataSource"/></property>
  <property name="configurationClass">  <value>org.hibernate.cfg.AnnotationConfiguration</value></property> 
   <property name="packagesToScan">
        <list>
            <value>com.bank.kernel.datamodel</value>              
        </list>
</property>
<property name="annotatedClasses">
  <list>
    <!-- identity service -->
    <value>com.svc.identity.datamodel.PartyHDO</value>
    <value>com.svc.identity.datamodel.RegisteredUserHDO</value>
    <value>com.svc.identity.datamodel.AuthenticationDetailsHDO</value>
    <value>com.svc.identity.datamodel.GrantHDO</value>
    <value>com.svc.identity.datamodel.PermissionHDO</value>
    <value>com.svc.identity.datamodel.RegisteredOrganisationHDO</value>
    <value>com.svc.identity.datamodel.RoleHDO</value>
   </list>
</property>
  <property name="hibernateProperties">
   <props>
    <prop key="hibernate.dialect">$hibernate.dialect</prop>
    <prop key="hibernate.hbm2ddl.auto">$hibernate.hbm2ddl.auto</prop>
    <prop key="hibernate.show_sql">false</prop>       
  </props>
  </property>
 </bean>
  <bean id="IndexService" class="com.k_int.bank.index.solr_impl.SOLRIndexService" init-method="init">
  <property name="indexDirectory"><value>$com.bank.index_dir</value></property>
  <property name="indexPropertyFile"><value>solr.properties</value></property>
  </bean>

到目前为止我尝试过的事情。

以 3 种不同的方式构建项目(2 个 IDE 和命令行) 删除了任何 jar 依赖冲突(我有 spring-2.5.6.jar 和 spring-context-3.0.5.RELEASE.jar,所以我删除了 spring-2.5.6.jar)

将http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 更改为http://www.springframework.org/schema/beans/spring-beans-3.0.xsd。

这些更改都没有消除错误。

在汽车文件中存在

 someJar.jar/org/springframework/context/config/ContextNameSpaceHandler.class

有没有人有任何想法。

【问题讨论】:

您已更改 beans 命名空间 URI,但错误消息与 context 命名空间有关。尝试从映射的 URI(如 http://www.springframework.org/schema/context/spring-context.xsd)中删除版本信息,这些信息应解析为 spring-context.jar 中的 .xsd 的最新版本。 抱歉,我确实更改了 spring-context 之一。我已经尝试了你所说的仍然没有运气。 【参考方案1】:

很可能发生的事情是向 Spring 提供有关自定义命名空间处理程序(spring.schema、spring.handlers)位置的元数据的文件在您创建 big(uber) jar 时最终相互覆盖。

为了更清楚地说明这一点,如果您使用上下文名称空间,比如说 - context:property-placeholder-configurer,有关如何解析此名称空间的信息是使用 spring-context.jar!:/META-INF/spring.handlers 文件中的 spring.handlers 文件,类似的文件存在于其他自定义命名空间支持的其他 spring jar 文件。现在,当您创建 Uber jar 时,由于处理程序文件的位置完全相同,一个 spring.handler 文件最终会覆盖其他文件,您会看到您所看到的错误。此处描述了一些潜在的修复,其中建议了一些创建可执行 jar 的替代方法:

How to create spring-based executable jar with maven?

【讨论】:

以上是关于无法找到 Spring NamespaceHandler 错误的主要内容,如果未能解决你的问题,请参考以下文章

Spring 3.0 -- 无法为 XML 模式命名空间上下文找到 Spring NamespaceHandler

Spring Boot WebSockets 无法找到当前用户(主体)

无法找到 Spring NamespaceHandler 错误

Spring-boot,无法自动装配类。未找到默认构造函数引发异常

Spring Boot:无法从以下候选中找到单个主类

Spring Cloud Kubernetes + Spring Cloud Gateway:无法找到 k8s 服务的实例