简体   繁体   English

如何在作为 JSONObject 的一部分发送 api 请求时保留字符串(“/”)

[英]How to preserve string ("/") while sending api request as part of JSONObject

I am trying to send below Jsonobject as request parameter to rest API.我正在尝试将下面的 Jsonobject 作为请求参数发送到 rest API。

{ "date": "2022-01-01", "value": [    "TST/USED" ] }

Value field contains the list of values, but when I add the value in this format as part of request it replaces string / to \/ due to which the request is not processing and it throws 415 : [no body] exception.值字段包含值列表,但是当我以这种格式添加值作为请求的一部分时,它会将字符串/替换为\/由于请求未处理并抛出 415 : [no body] 异常。

RestTemplate restTemplate = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.add(AUTHORIZATION, "Bearer " + token);
headers.setAccept(Arrays.asList(MediaType.APPLICATION_JSON));

JSONObject req = new JSONObject();
req.put("date",  "2022-01-01");
req.put("value", "TST/USED");

HttpEntity<Object> object = new HttpEntity<>(req.toString(), headers);

Object response = restTemplate.exchange(apiUrl, HttpMethod.POST, object, Object.class)
                              .getBody();

I don't see the issue you mention, here is what I am running:我没有看到您提到的问题,这是我正在运行的问题:

Main application with Spring boot and a RestTemplate bean.带有 Spring boot 和 RestTemplate bean 的主应用程序。

package com.so.so72424428;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;

@SpringBootApplication
public class So72424428Application {

    public static void main(String[] args) {
        SpringApplication.run(So72424428Application.class, args);
    }

    @Bean
    public RestTemplate restTemplate(RestTemplateBuilder builder) {
       return builder.build();
    }
    
}

An api to test:一个要测试的api:

package com.so.so72424428;

import org.springframework.util.MimeTypeUtils;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ApiEndPoint {
    
    @PostMapping(path = "/test-api", consumes = MimeTypeUtils.APPLICATION_JSON_VALUE, produces = MimeTypeUtils.APPLICATION_JSON_VALUE)
    public String echo (@RequestBody String jsonMessage) {
        return jsonMessage;
    }

}

A class to run your code:运行代码的类:

package com.so.so72424428;

import java.util.Arrays;

import org.json.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.MediaType;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;

import lombok.extern.slf4j.Slf4j;

@Component
@Slf4j
public class So72424428 implements CommandLineRunner {
    @Autowired
    private RestTemplate restTemplate;

    @Override
    public void run(String... args) throws Exception {
        HttpHeaders headers = new HttpHeaders();
        //headers.add(AUTHORIZATION, "Bearer " + token);
        headers.setAccept(Arrays.asList(MediaType.APPLICATION_JSON));
        headers.setContentType(MediaType.APPLICATION_JSON);

        JSONObject req = new JSONObject();
        req.put("date",  "2022-01-01");
        req.put("value", "TST/USED");
        
        log.info(req.toString());

        HttpEntity<Object> object = new HttpEntity<>(req.toString(), headers);

        String apiUrl = "http://localhost:8080/test-api";
        
        Object response = restTemplate.exchange(apiUrl, HttpMethod.POST, object, Object.class)
                                      .getBody();
        log.info(response.toString());
    }

}

When I run the code I print out the content of the req variable: {"date":"2022-01-01","value":"TST/USED"}当我运行代码时,我打印出req变量的内容: {"date":"2022-01-01","value":"TST/USED"}

Also after round trip of the request I print out the response: {date=2022-01-01, value=TST/USED}同样在请求往返之后,我打印出响应: {date=2022-01-01, value=TST/USED}

This is the log:这是日志:

2022-05-29 13:39:24.416  INFO 32332 --- [  restartedMain] com.so.so72424428.So72424428Application  : Starting So72424428Application using Java 15.0.2 on ...)
2022-05-29 13:39:24.418  INFO 32332 --- [  restartedMain] com.so.so72424428.So72424428Application  : No active profile set, falling back to 1 default profile: "default"
2022-05-29 13:39:24.462  INFO 32332 --- [  restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-05-29 13:39:24.462  INFO 32332 --- [  restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-05-29 13:39:25.310  INFO 32332 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)
2022-05-29 13:39:25.320  INFO 32332 --- [  restartedMain] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2022-05-29 13:39:25.320  INFO 32332 --- [  restartedMain] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.63]
2022-05-29 13:39:25.387  INFO 32332 --- [  restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2022-05-29 13:39:25.388  INFO 32332 --- [  restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 925 ms
2022-05-29 13:39:25.716  INFO 32332 --- [  restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2022-05-29 13:39:25.760  INFO 32332 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8080 (http) with context path ''
2022-05-29 13:39:25.768  INFO 32332 --- [  restartedMain] com.so.so72424428.So72424428Application  : Started So72424428Application in 1.678 seconds (JVM running for 2.616)
2022-05-29 13:39:25.778  INFO 32332 --- [  restartedMain] com.so.so72424428.So72424428             : {"date":"2022-01-01","value":"TST/USED"}
2022-05-29 13:39:25.869  INFO 32332 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-05-29 13:39:25.869  INFO 32332 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2022-05-29 13:39:25.870  INFO 32332 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 1 ms
2022-05-29 13:39:25.921  INFO 32332 --- [  restartedMain] com.so.so72424428.So72424428             : {date=2022-01-01, value=TST/USED}
2022-05-29 13:39:33.346  INFO 32332 --- [on(2)-127.0.0.1] inMXBeanRegistrar$SpringApplicationAdmin : Application shutdown requested.

As you can see there is no backslash, nor no issue for completing the request.如您所见,没有反斜杠,完成请求也没有问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM