Home  >  Article  >  Web Front-end  >  How postman+json and springmvc implement batch addition

How postman+json and springmvc implement batch addition

php中世界最好的语言
php中世界最好的语言Original
2018-04-08 16:56:411556browse

This time I will show you how postman+json and springmvc implement batch addition. What are the precautions for postman+json and springmvc to implement batch addition. The following is a practical case, let's take a look.

postman tool configuration and data preparation:

1) Enter the test IP address and the interface address corresponding to the port number in the address bar;

2) Add the parameter Content-Type=application/json in the Headers column;

has been tested locally as an example: the corresponding configuration diagram is as follows:

3) Click on the Body column and select raw, then enter the data set to be transferred and added in the corresponding text areacombination;

This example has two pieces of data, as shown below:

Each piece of data The object corresponds to a database record to be saved by the backend interface, a java object;

At this point, the configuration of postMan is completed. Just click the send button to trigger the send event to send the data in json format to the backend. interface.

Server interface configuration: springmvc has been used to illustrate:

Annotations on the controller class object are the same as other ordinary controller objects;

@RestController
@RequestMapping("/room-call")
public class RoomCallController {
/**
 * 同时添加多条即时建议接口,参数接收要测试。
 *
 * @param roomCallModels 要存储的即时建议集合
 * @return 存储成功
 */
@RequestMapping(value = "/add-all", method = RequestMethod.POST)
public JSONResult addAllRoomCall(@RequestBody List roomCallModels) {
//对接收参数做空判断,防止空指针
if (CollectionUtils.isEmpty(roomCallModels)) {
  return CommonError.PARAM_IS_NULL.toJSONResult("即使建议数据");
}
  for (RoomCallModel roomCallModel : roomCallModels
    ) {
//操作接受到的对象集合,依次入库,完成指定业务; } }

At this point, the test of sending data collection based on postman is completed. The roomCallModel object is the receiving data object and the object to be stored in the database. The attributes in each piece of data in the data collection sent by postman correspond to the attributes in the entity object.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to use the content filter in jQuery

How to use the compound selector in jQuery

How does Vue use CDN to optimize the speed of first screen loading

The above is the detailed content of How postman+json and springmvc implement batch addition. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn