亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中Get和Post如何使用

發布時間:2022-11-18 10:18:40 來源:億速云 閱讀:150 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“Java中Get和Post如何使用”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Java中Get和Post如何使用”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

1 Get請求數據

1.1 Controller

文件名MyController,內容為:

@RestController
@RequestMapping("/homepage")
publicclass MyController {
    @Autowired
    MyService myService;

    @GetMapping("/learnGet")
    public String learnGet(){
        return myService.learnGet();
    }
}

1.2 Service

文件名MyService,內容為:

@Service
@EnableScheduling
publicclass MyService {
    public String learnGet(){
        Long timeLong = System.currentTimeMillis();
        SimpleDateFormat timeFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //設置格式
        String timeString = timeFormat.format(timeLong);
        return timeString;
    }
}

1.3 Application

在application.properties配置:

# 設置端口號
server.port=8888

1.4 Postman

配置Get,地址為:http://localhost:8888/homepage/returnTime 。

即可獲得當前時間戳。

Java中Get和Post如何使用

2 Post接收數據

2.1 Controller

文件名MyController,內容為:

@RestController
@RequestMapping("/homepage")
publicclass MyController {
    @Autowired
    MyService myService;
    @PostMapping("/postReceive")
    public Map<String, Object> postReceive(@RequestParam("number") int number, @RequestParam("name") String name) {
        return myService.postReceive(number, name);
    }
    @PostMapping("/postReceiveByMap")
    public Map<String, Object> postReceiveByMap(@RequestParam Map<String, Object> map) {
        System.out.println("map:" + map + "\n");
        return myService.postReceiveByMap(map);
    }
}

2.2 Service

文件名MyService,內容為:

@Service
@EnableScheduling
publicclass MyService {
    public Map<String, Object> postReceive(int number, String name){
        Map<String, Object> res = new HashMap<>();
        res.put("number", number);
        res.put("name", name);
        return res;
    }
    public Map<String, Object> postReceiveByMap(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("map:" + map + "\n");
        System.out.println("res:" + res + "\n");
        return res;
    }

2.3 Application

在application.properties配置:

# 設置端口號
server.port=8888

2.4 Postman

配置Get,地址為:http://localhost:8888/homepage/returnTime 。

即可獲得輸出。

Java中Get和Post如何使用

3 Post發送數據

需要注意,RestTemplate在postForObject時,用MultiValueMap,不可使用HashMap。

3.1 Controller

文件名MyController,內容為:

@RestController
@RequestMapping("/homepage")
publicclass MyController {

    @Autowired
    MyService myService;

    @PostMapping("/postSend")
    public Map<String, Object> postSend() {
        return myService.postSend();
    }
}

3.2 Service

文件名MyService,內容為:

@Service
@EnableScheduling
publicclass MyService {
    @Resource
    private RestTemplate restTemplate;
    String URL = "http://localhost:8888/homepage/postReceiveByMap";

    public Map<String, Object> postSend(){
        Map<String, Object> sendData = new HashMap<>();
        sendData.put("number", 3);
        sendData.put("name", "張三");
        ResponseEntity<ResponseResult> responseData = restTemplate.postForEntity(URL, sendData, ResponseResult.class);
        Map<String, Object> returnData = new HashMap<>();
        returnData.put("StatusCode:", responseData.getStatusCode());
        returnData.put("Body:", responseData.getBody());
        return returnData;
    }
}

3.3 ResponseResult

publicclass ResponseResult {

    privateint number;
    private String name;

    public ResponseResult(){
    }

    public int getNumber() {
        return number;
    }
    public void setNumber(int number) {
        this.number = number;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return"ResponseResult [number=" + number + ",name=" + name + "]";
    }
}

3.4 Config

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

3.5 Application

在application.properties配置:

# 設置端口號
server.port=8889

3.6 Postman

配置Post,地址為: http://localhost:8889/homepage/postSend

即可獲得輸出。

Java中Get和Post如何使用

讀到這里,這篇“Java中Get和Post如何使用”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桂平市| 汶上县| 株洲市| 克山县| 南丹县| 桂东县| 高安市| 磐石市| 南投市| 平果县| 呼伦贝尔市| 泸定县| 苏州市| 德州市| 门源| 石景山区| 长寿区| 甘谷县| 东光县| 清新县| 仁怀市| 旬邑县| 开阳县| 当雄县| 苍溪县| 武城县| 新乡县| 昆明市| 吉木萨尔县| 扎赉特旗| 当涂县| 拜泉县| 西吉县| 凤庆县| 商水县| 庆元县| 高尔夫| 新余市| 喀喇| 孟津县| 盐源县|