gpt4 book ai didi

java - 使用Java DSL从WSO2转换为camel : How to forward with URI pattern

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

我将从我们的堆栈中删除 WSO2,并且我必须用 Camel Java DSL 编写在 WSO2 中实现的端点。

在 WSO2 中,我们有一个端点,如下所示:

<resource methods="OPTIONS GET" uri-template="/request/{data}" inSequence="requestreset"/>
<http method="GET" uri-template="http://127.0.0.1/index.php?_q=requestreset&amp;data={uri.var.data}"/>

我在 Java Camel 路由器中的代码是:


public class DefaultRouteBuilder extends RouteBuilder {

private HashMap<String, String> routeCorresponding = new HashMap();

@Override
public void configure() throws Exception {

routeCorresponding.put("reset/request/{data}", "http://127.0.0.1/index.php?_q=requestreset&data={data}");

for (Map.Entry<String, String> pair : routeCorresponding.entrySet()) {
String url = pair.getKey();
String target = pair.getValue();

String resultTarget = target.contains("?") ? target + "&bridgeEndpoint=true" : target + "?bridgeEndpoint=true";

fromF("servlet:"+ url +"?matchOnUriPrefix=true")
.log("Request: ${in.header."+ Exchange.HTTP_METHOD +"} to ${in.header."+ Exchange.HTTP_URI +"}")
.toF(resultTarget);
}

}

}

但它并没有像我想要的那样工作,因为当我向 tomcat.myserver.com:8080/camel-example-servlet/reset/request/blablablablabla 发出请求时我得到这样的回应: org.apache.camel.http.common.HttpOperationFailedException: HTTP operation failed invoking http://127.0.0.1/index.php/reset/request/blablablablabla?_q=requestreset&data=%7Bdata%7D with statusCode: 404

而不是 http://127.0.0.1/index.php/reset/request/blablablablabla?_q=requestreset&data=%7Bdata%7D ,我希望以下请求位于 http://127.0.0.1/index.php?_q=requestreset&data=blablablablabla

是否可以在 Camel/Java DSL 中实现这一点?基本上,WSO2 使用 URI 模板和字段周围的大括号实现了什么?

最佳答案

您绝对可以实现这一目标 - 但您的 {data} block 存储为 header ,因此您需要 refer to it as ${header.data} in your target URI .

这是一个使用 the REST DSL 的示例:

restConfiguration().component("servlet");

rest("/reset/request/{data}")
.get()
.route()
.log("Received request...")
.setHeader(Exchange.HTTP_PATH, simple("/index.php"))
.setHeader(Exchange.HTTP_QUERY, simple("_q=requestreset&data=${header.data}"))
.to("http://localhost:8080?bridgeEndpoint=true");
根据以下问题

编辑。或者,如果您需要代理数百个 URL,则无需创建数百个路由,您只需创建一个路由来代理所有这些 URL,并在 Processor 中实现您的路由逻辑。 ,例如:

from("servlet:?matchOnUriPrefix=true")
.process(new Processor() {
public void process(Exchange exchange) throws Exception {
// set your target URI here, look it up from the HashMap, etc.
}
})
.to("http://localhost:8080?bridgeEndpoint=true");

关于java - 使用Java DSL从WSO2转换为camel : How to forward with URI pattern,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60285157/

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