gpt4 book ai didi

java - Spring Integration - 公开重载方法的消息传递网关

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

我有一个由消息传递网关公开的接口(interface)

SomeInterface.java`

interface SomeInterface {
Outcome doSomething(String p1);
Outcome doSomething(String p1, String p2);
}

rest-beans.xml

<int:gateway id="rest.someRestClient"
service-interface="SomeInterface">
<int:method name="doSomething" request-channel="rest.doSomething1"/>
<int:method name="doSomething" request-channel="rest.doSomething2"/>
</int:gateway>

<int:channel id="rest.someRestClient"/>

<int-http:outbound-gateway url="${rest.http.url}/v1/doSomething1"
request-channel="rest.doSomething1"
http-method="POST"
message-converters="rest.messageConverter"
header-mapper="rest.headerMapper"
expected-response-type="Outcome">
</int-http:outbound-gateway>

<int-http:outbound-gateway url="${rest.http.url}/v1/doSomething2"
request-channel="rest.doSomething2"
http-method="POST"
message-converters="rest.messageConverter"
header-mapper="rest.headerMapper"
expected-response-type="Outcome">
</int-http:outbound-gateway>

我不太确定如何公开接口(interface)中定义的两个方法,因为这些方法已重载。

由于方法重载,上述 xml 不起作用。

最佳答案

您无法使用 XML 来完成此操作,请使用 @MessagingGateway 注释(以及配置 channel 的方法上的 @Gateway)以及 @IntegrationComponentScan 它将查找注释并以与 XML 相同的方式生成网关。

关于java - Spring Integration - 公开重载方法的消息传递网关,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46957210/

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