• Java中restTemplate的使用


    原文链接

    GitHub项目地址

    Gitee项目地址

    本文介绍restTemplate基础用法。

    Java中get和post的用法请参考:Java中Get和Post的使用

    1 提供get/post接口

    1.1 Controller

    @RestController
    @RequestMapping("/homepage")
    public class MyController {
    
        @Autowired
        MyService myService;
    
        // 提供get接口
        @GetMapping("/provideGet")
        public Map<String, String> provideGet(){
            return myService.provideGet();
        }
    
        // 提供post接口
        @PostMapping("/providePost")
        public Map<String, Object> providePost(@RequestParam("number") int number, @RequestParam("name") String name) {
            return myService.providePost(number, name);
        }
    
        // 提供map参数的post接口
        @PostMapping("/providePostByMap")
        public Map<String, Object> providePostByMap(@RequestParam Map<String, Object> map) {
            return myService.providePostByMap(map);
        }
    
        // 调用get接口
        @GetMapping("/useGet")
        public Map<String, Object> useGet() {
            return myService.useGet();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    1.2 Service

    @Service
    @EnableScheduling
    public class MyService {
    
        public Map<String, String> provideGet() {
            Map<String, String> res = new HashMap<>();
            res.put("number", "3");
            res.put("name", "张三get");
            System.out.println("provideGet res:" + res + "\n");
            return res;
        }
    
        public Map<String, Object> providePost(int number, String name) {
            Map<String, Object> res = new HashMap<>();
            res.put("number", number);
            res.put("name", name);
    
            return res;
        }
    
        public Map<String, Object> providePostByMap(Map<String, Object> map) {
            int number = map.get("number") == null ? 0 : Integer.parseInt((String) map.get("number"));
            String name = map.get("name") == null ? "" : (String) map.get("name");
            Map<String, Object> res = new HashMap<>();
            res.put("number", number);
            res.put("name", name);
    
            System.out.println("providePostByMap res:" + res + "\n");
            return res;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    2 调用get/post接口

    使用restTemplate调用get/post接口。

    • getForObject():返回值是HTTP协议的响应体
    • getForEntity():返回的是ResponseEntityResponseEntity是对HTTP响应的封装,除了包含响应体,还包含HTTP状态码、contentType、contentLength、Header等信息

    2.1 Controller

    @RestController
    @RequestMapping("/homepage")
    public class MyController {    
    	@Autowired
        MyService myService;
    
        // 调用get接口
        @GetMapping("/useGet")
        public Map<String, Object> useGet() {
            return myService.useGet();
        }
    
        // 调用get接口验证账号密码
        @GetMapping("/useGetByPsw")
        public Map<String, Object> useGetByPsw() {
            return myService.useGetByPsw();
        }
    
        // 调用post接口
        @PostMapping("/usePost")
        public Map<String, Object> usePost() {
            return myService.usePost();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    2.2 Service

    @Service
    @EnableScheduling
    public class MyService {
        @Resource
        private RestTemplate restTemplate;
    
        String getURL = "http://localhost:8081/homepage/provideGet";
        String postURL = "http://localhost:8081/homepage/providePostByMap";
    
        public Map<String, Object> useGet() {
            // getForObject返回值是HTTP协议的响应体
            String strObject1 = restTemplate.getForObject(getURL, String.class); //无参
            JSONObject jsonObject1 = JSONObject.parseObject(strObject1);
    
            MultiValueMap<String, String> sendData = new LinkedMultiValueMap<>();
            sendData.add("number", "3");
            sendData.add("name", "张三post");
            String strObject2 = restTemplate.getForObject(getURL, String.class, sendData); // 带参
            JSONObject jsonObject2 = JSONObject.parseObject(strObject2);
    
            // getForEntity返回的是ResponseEntity,是对HTTP响应的封装
            ResponseEntity<ResponseResult> responseData = restTemplate.getForEntity(getURL, ResponseResult.class);
            Map<String, Object> returnData = new HashMap<>();
            returnData.put("StatusCode:", responseData.getStatusCode());
            returnData.put("Body:", responseData.getBody());
    
            System.out.println("useGet jsonObject1:" + jsonObject1 + "\n");
            System.out.println("useGet jsonObject2:" + jsonObject2 + "\n");
            System.out.println("useGet responseData:" + responseData + "\n");
            System.out.println("useGet returnData:" + returnData + "\n");
            return returnData;
        }
    
        public Map<String, Object> useGetByPsw() {
    
            RestTemplateBuilder builder = new RestTemplateBuilder();
            RestTemplate restTemplate = builder.basicAuthentication("username", "password").build();
    
            // getForEntity返回的是ResponseEntity,是对HTTP响应的封装
            ResponseEntity<ResponseResult> responseData = restTemplate.getForEntity(getURL, ResponseResult.class);
            Map<String, Object> returnData = new HashMap<>();
            returnData.put("StatusCode:", responseData.getStatusCode());
            returnData.put("Body:", responseData.getBody());
    
            System.out.println("useGetByPsw returnData:" + responseData + "\n");
            System.out.println("useGetByPsw returnData:" + returnData + "\n");
            return returnData;
        }
    
        public Map<String, Object> usePost() {
            //RestTemplate在postForObject时,用MultiValueMap,不可使用HashMap。
            MultiValueMap<String, String> sendData = new LinkedMultiValueMap<>();
            sendData.add("number", "3");
            sendData.add("name", "张三post");
    
            // getForObject返回值是HTTP协议的响应体
            String strObject = restTemplate.postForObject(postURL, sendData, String.class);
            JSONObject jsonObject = JSONObject.parseObject(strObject);
    
            // getForEntity返回的是ResponseEntity,是对HTTP响应的封装
            ResponseEntity<ResponseResult> responseData = restTemplate.postForEntity(postURL, sendData, ResponseResult.class);
            Map<String, Object> returnData = new HashMap<>();
            returnData.put("StatusCode:", responseData.getStatusCode());
            returnData.put("Body:", responseData.getBody());
    
            System.out.println("usePost jsonObject:" + jsonObject + "\n");
            System.out.println("usePost responseData:" + responseData + "\n");
            System.out.println("usePost returnData:" + returnData + "\n");
            return returnData;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71

     
     

    学习更多编程知识,请关注我的公众号:

    代码的路

  • 相关阅读:
    SKG、倍轻松“亮红灯”,网红按摩仪难逃“过气命”?
    Windows批处理命令
    功能测试进阶自动化测试如何摸清学习方向,少走弯路呢?
    通信原理学习笔记3-3:数字通信系统概述(数字调制、IQ调制与PSK / QAM)
    RFID技术与WMS仓储管理系统对接有什么优势
    【Vue】父子组件间如何通过事件进行通信(2)
    systemctlm-cosim-demo环境搭建
    天津工业大学计算机考研资料汇总
    【面试高高手】—— Redis
    Alevel物理测量学真题解析
  • 原文地址:https://blog.csdn.net/zbzcDZF/article/details/127866371