gpt4 book ai didi

java - "unable to locate Spring NamespaceHandler"错误

转载 作者:IT老高 更新时间:2023-10-28 13:52:22 28 4
gpt4 key购买 nike

我正在使用 Spring 创建一个独立的 Sava 应用程序,以处理 JDBC 访问。该应用程序在每次测试中都能正常运行,我决定需要一个 jar 来部署我们的客户端。

他们的类路径中可能没有 spring,所以我使用 maven-assembly-plugin 来处理带有依赖项的 jar 创建。

但是当我尝试运行应用程序时:

java -jar target/myproject-0.0.1-SNAPSHOT-jar-with-dependencies.jar

这会引发以下错误:

Exception in thread "main" org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/p]
Offending resource: class path resource [applicationContext.xml]

at org.springframework.beans.factory.parsing.FailFastProblemReporter.error(FailFastProblemReporter.java:68)
at org.springframework.beans.factory.parsing.ReaderContext.error(ReaderContext.java:85)
at org.springframework.beans.factory.parsing.ReaderContext.error(ReaderContext.java:80)
...and so on to the database access class of this project.

applicationContext.xml 文件位于 projectbase/src/main/resources 中。并将其放置在目标/包名基础上。

applicationContext.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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
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">


<bean id="dataSourceDesenv" class="org.apache.commons.dbcp.BasicDataSource"... />

<bean id="simpleJdbcDaoSupport" class="org.springframework.jdbc.core.simple.SimpleJdbcDaoSupport"
p:dataSource-ref="dataSourceDesenv" />

<bean id="simpleJdbcTemplate" class="org.springframework.jdbc.core.simple.SimpleJdbcTemplate">
<constructor-arg ref="dataSourceDesenv" />
</bean>

</beans>

最佳答案

我今天使用 maven-assembly-plugin 遇到了这个问题。搜索使我想到了这个问题,并且查看错误报告表明我可能使用了错误的插件。所以我切换到了 maven-shade-plugin。据我所知,它工作得很好。我有一个包含许多 Spring 模块以及 Apache MQ 的可执行 jar。这是我的 pom.xml 中的相关部分:

<build>
<finalName>sample-broker</finalName>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring.handlers</resource>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring.schemas</resource>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>org.XYZ</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

关于java - "unable to locate Spring NamespaceHandler"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3335203/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com