Spring Boot 는 다른 항목 의 인터페이스 방법 을 호출 하여 json 인 자 를 전달 합 니 다.

1417 단어 springboot
1 설명: 다른 항목 인터페이스 방법 을 호출 하여 json 데이터 파 라 메 터 를 전달 한 다음 json 데 이 터 를 되 돌려 줍 니 다.
2. 코드 는 다음 과 같 습 니 다.
@RequestMapping("/doPostGetJson")
public String doPostGetJson() throws ParseException {
   //            json     
   String jsonText = "{id:1}";
   JSONObject json = (JSONObject) JSONObject.parse(jsonText);
   JSONObject sr = this.doPost(json);
   System.out.println("    :" + sr);
   return sr.toString();
}

public static JSONObject doPost(JSONObject date) {
   HttpClient client = HttpClients.createDefault();
   //         
   String url = "http://192.168.1.101:8080/getJson";
   HttpPost post = new HttpPost(url);
   JSONObject jsonObject = null;
   try {
      StringEntity s = new StringEntity(date.toString());
      s.setContentEncoding("UTF-8");
      s.setContentType("application/json");
      post.setEntity(s);
      post.addHeader("content-type", "text/xml");
      HttpResponse res = client.execute(post);
      String response1 = EntityUtils.toString(res.getEntity());
      System.out.println(response1);
      if (res.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
         String result = EntityUtils.toString(res.getEntity());//   json  :
         jsonObject = JSONObject.parseObject(result);
      }
   } catch (Exception e) {
      throw new RuntimeException(e);
   }
   return jsonObject;
}

좋은 웹페이지 즐겨찾기