gpt4 book ai didi

Spring MVC 与 Spring Integration HTTP : how to pass the queryString avoiding the "?" encoding with "%3F" ?

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

我有两个 Spring MVC 应用程序,它们通过 Spring Integration HTTP 相互连接。

我有一个“application1”和一个“application2”

应用程序 1 收到此 HTTP GET 请求:

http://localhost:8080/application1/api/persons/search/findByName?name=Name

应用程序 1 使用此 @Controller 管理请求:

@Controller
public class ApplicationController {

@RequestMapping(value = "/api/{repository}/search/{methodName}", method = RequestMethod.GET)
public void search(@PathVariable(value="repository") String repository,
@PathVariable(value="methodName") String methodName,
ModelMap model,
HttpServletRequest request,
HttpServletResponse response) {
// handling the request ...
}
}

这是我在请求属性中可以看到的内容:

getRequestURI=/application1/api/persons/search/findByName
getRequestedSessionId=null
getContextPath=/application1
getPathTranslated=null
getAuthType=null
getMethod=GET
getQueryString=name=Name
getServletPath=/api/persons/search/findByName
getPathInfo=null
getRemoteUser=null

我想使用带有 <int-http:outbound-gateway> 的 Spring Integration HTTP 将此请求“传输”application2 .

出站网关使用的 channel 的消息源自 @Controller这样:

MessagingChannel messagingChannel = (MessagingChannel)appContext.getBean("requestChannelBean");
String payload = repository+"/search/"+methodName;
Message<String> message = MessageBuilder.withPayload(payload).build();
MessageChannel requestChannel = messagingChannel.getRequestChannel();
MessagingTemplate messagingTemplate = new MessagingTemplate();
Message<?> response = messagingTemplate.sendAndReceive(requestChannel, message);

这是 <int-http:outbound-gateway>配置:

<int-http:outbound-gateway id="gateway" rest-template="restTemplate"
url="http://localhost:8080/application2/api/service/{pathToCall}"
http-method="POST" header-mapper="headerMapper" extract-request-payload="true"
expected-response-type="java.lang.String">
<int-http:uri-variable name="pathToCall" expression="payload"/>
</int-http:outbound-gateway>

此网关向 url 生成 HTTP POST 请求:

http://localhost:8080/application2/api/service/persons/search/findByName

但是在这个请求中我丢失了 application1 收到的原始 QueryString

我已经尝试将查询字符串直接添加到负载,如下所示:

String queryString = "";
if (request.getQueryString()!=null)
queryString = request.getQueryString();
String payload = repository+"/search/"+methodName+"?"+queryString;

但这不起作用:生成的 url 是:

http://localhost:8080/application2/api/service/persons/search/findByName%3Fname=Name

“?”符号被“%3F”替换,所以调用的方法是"/service/persons/search/findByName%3Fname=Name" , 而不是 "/service/persons/search/findByName"

我想这取决于 http-method="POST" ;我想在任何情况下都使用 POST 方法,因为我想将此“服务”用于一般请求。

那么我要怎样做才能以最简单的方式将原始请求的queryString传递给对方呢?

提前致谢。

最佳答案

我找到了答案。

“?”的编码进入“%3F”是由 <int-http:outbound-gateway> 制作的因为encode-uri="false"缺少属性。

出站网关默认对 URI 进行编码,因为 encode-uri属性默认设置为 true。

关于Spring MVC 与 Spring Integration HTTP : how to pass the queryString avoiding the "?" encoding with "%3F" ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38654108/

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