Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to pass ArrayList to the background by postman

2025-01-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Editor to share with you how to transfer postman ArrayList to the background. I hope you will get something after reading this article. Let's discuss it together.

Postman passes ArrayList to the backend to accept the following parameters: package com.gpdi.lxq.eladmin.entity.page; import java.util.ArrayList;import java.util.List;import java.util.Map; / * * @ description: paging request * @ author: Lxq * @ date: 17:27 on 2020-1-19 * / public class PageRequest {/ * * current page number * / private int pageNum = 1 / * number of pages * / private int pageSize = 10; public List getParams () {return params;} public void setParams (List params) {this.params = params;} / * query parameters * / private List params = new ArrayList (); public int getPageNum () {return pageNum } public void setPageNum (int pageNum) {this.pageNum = pageNum;} public int getPageSize () {return pageSize;} public void setPageSize (int pageSize) {this.pageSize = pageSize;} public Object getParam (String key) {return getParams (). Get (0) .get (key);}} the format of parameters in Postman is shown below

Remember Key: Content-Type Value: application/json in .headers

Done ~

The argument passed by Postman is that a List is referenced in the List type entity class.

Generics are other entity classes

When the parameter is a List collection

The format of parameters in Postman is shown as follows:

After reading this article, I believe you have a certain understanding of "how to transfer ArrayList to the background by postman". If you want to know more about it, you are welcome to follow the industry information channel. Thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report