• springboot post xml


    TestController.java



    package com.done.posttest.controller;
    
    
    import com.done.posttest.model.Student;
    import io.swagger.annotations.Api;
    import io.swagger.annotations.ApiOperation;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.http.HttpEntity;
    import org.springframework.http.HttpHeaders;
    import org.springframework.http.MediaType;
    import org.springframework.util.LinkedMultiValueMap;
    import org.springframework.util.MultiValueMap;
    import org.springframework.web.bind.annotation.PostMapping;
    import org.springframework.web.bind.annotation.RequestBody;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    import org.springframework.web.client.RestTemplate;
    
    import java.util.HashMap;
    import java.util.Map;
    
    @Api(description = "test")
    @RestController
    public class TestController {
    
    
        @PostMapping("received")
        @ApiOperation(value = "received", httpMethod = "POST", consumes =  MediaType.APPLICATION_XML_VALUE , produces = MediaType.APPLICATION_XML_VALUE)
        public Map<Object,Object> received(@RequestBody Student student){
            Map<Object,Object> map = new HashMap<>();
    
    
            System.out.println(student);
    
            map.put("code",200);
            map.put("message","接收成功");
            return map;
        }
    
        @PostMapping("send")
        public Map<Object,Object> send(){
            Map<Object,Object> map = new HashMap<>();
    
    
            RestTemplate restTemplate = new RestTemplate();
    
            String url = "http://localhost:8700/received";
            HttpHeaders requestHeader = new HttpHeaders();
            requestHeader.setContentType(MediaType.APPLICATION_XML);
            StringBuffer xmlString = new StringBuffer();
            xmlString.append("<student>")
                    .append("<id>2</id>")
                    .append("<name>jim</name>")
                    .append("</student>");
            HttpEntity<String> requestEntity = new HttpEntity<>(xmlString.toString(), requestHeader);
    
            String forObject = restTemplate.postForObject(url, requestEntity, String.class);
    
            map.put("code",200);
            map.put("message","发送成功");
            map.put("data",forObject);
            return map;
        }
    
    }
    
    Student.java
    package com.done.posttest.model;
    
    
    import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
    import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
    import io.swagger.annotations.ApiModel;
    import io.swagger.annotations.ApiModelProperty;
    
    import javax.xml.bind.annotation.*;
    import java.io.Serializable;
    
    
    @JacksonXmlRootElement(localName ="student")
    public class Student implements Serializable {
    
        @JacksonXmlProperty
        private String id;
    
        @JacksonXmlProperty
        private String name;
    
        public String getId() {
            return id;
        }
    
        public void setId(String id) {
            this.id = id;
        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    }
  • 相关阅读:
    LeetCode 382. Linked List Random Node
    LeetCode 398. Random Pick Index
    LeetCode 1002. Find Common Characters
    LeetCode 498. Diagonal Traverse
    LeetCode 825. Friends Of Appropriate Ages
    LeetCode 824. Goat Latin
    LeetCode 896. Monotonic Array
    LeetCode 987. Vertical Order Traversal of a Binary Tree
    LeetCode 689. Maximum Sum of 3 Non-Overlapping Subarrays
    LeetCode 636. Exclusive Time of Functions
  • 原文地址:https://www.cnblogs.com/cppwen/p/13213982.html
Copyright © 2020-2023  润新知