gpt4 book ai didi

Spring Integration - Spring 示例配置命名空间问题

转载 作者:行者123 更新时间:2023-12-02 06:52:32 25 4
gpt4 key购买 nike

问题:在我的 spring 配置文件中获取元素的命名空间错误。

“无法找到架构 namcespace 'http://www.springframework.org/schema/integration/ws 的元素“int-ws:hyeader-enricher”的 Spring NamespaceHandler '

描述:尝试使用 maven 在简单的 spring sts spring 项目中从 spring 网站创建 Spring Integration 示例项目。

我没有在示例目录中找到这个项目来与我的项目进行比较。

http://projects.spring.io/spring-integration/

Spring Bean 配置文件

<?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:int="http://www.springframework.org/schema/integration"
xmlns:int-http="http://www.springframework.org/schema/integration/http"
xmlns:int-ws="http://www.springframework.org/schema/integration/ws"
xmlns:int-xml="http://www.springframework.org/schema/integration/xml"
xsi:schemaLocation="http://www.springframework.org/schema/integration/http http://www.springframework.org/schema/integration/http/spring-integration-http.xsd
http://www.springframework.org/schema/integration/ws http://www.springframework.org/schema/integration/ws/spring-integration-ws.xsd
http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/integration/xml http://www.springframework.org/schema/integration/xml/spring-integration-xml.xsd">


<!-- Simple Service -->

<int:gateway id="simpleGateway"
service-interface="foo.TempConverter"
default-request-channel="simpleExpression" />

<int:service-activator id="expressionConverter"
input-channel="simpleExpression"
expression="(payload - 32) / 9 * 5"/>

<!-- Web Service -->

<int:gateway id="wsGateway" service-interface="foo.TempConverter"
default-request-channel="viaWebService" />

<int:chain id="wsChain" input-channel="viaWebService">
<int:transformer
expression="'&lt;FahrenheitToCelsius xmlns=''http://www.w3schools.com/webservices/''&gt;&lt;Fahrenheit&gt;XXX&lt;/Fahrenheit&gt;&lt;/FahrenheitToCelsius&gt;'.replace('XXX', payload.toString())" />
<int-ws:header-enricher>
<int-ws:soap-action value="http://www.w3schools.com/webservices/FahrenheitToCelsius"/>
</int-ws:header-enricher>
<int-ws:outbound-gateway
uri="http://www.w3schools.com/webservices/tempconvert.asmx"/>
<int-xml:xpath-transformer
xpath-expression="/*[local-name()='FahrenheitToCelsiusResponse']/*[local-name()='FahrenheitToCelsiusResult']"/>
</int:chain>

</beans>

更新 - 解决方案我必须添加网站上未列出的以下依赖项。我将其添加到 POM 文件中。

<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-ws</artifactId>
<version>4.1.6.RELEASE</version>

</dependency>
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-xml</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>

最佳答案

Spring XML 配置命名空间在运行时需要一个命名空间处理程序(META-INF/spring.handlers 类路径资源,通常在类路径上的 JAR 中,指定处理程序类)。

Spring 在运行时给出此消息的原因是因为尚未为该 XML 元素注册 namespace 处理程序。最可能的原因是 spring-integration-ws.jar (或者可能是必需的依赖项)在运行时不在类路径上。

关于Spring Integration - Spring 示例配置命名空间问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32189486/

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