Home  >  Article  >  Web Front-end  >  postman+json+springmvc test batch adding instances

postman+json+springmvc test batch adding instances

亚连
亚连Original
2018-05-28 10:25:072401browse

Below I will share with you an example of postman json springmvc test batch addition, which has a good reference value and I hope it will be helpful to everyone.

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 area;

This example has two data bit examples, as shown below:

Each data object corresponds to a database record to be saved by the background 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 data in json format to the back-end 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<RoomCallModel> 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, in which the roomCallModel object is the receiving data object and the object to be stored in the database. Each of the data collection sent by postman The attributes in a piece of data correspond to the attributes in the entity object.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related Articles:

Troubleshooting Issues Using WebUploader in Bootstrap Blur Box

Computed Work in Vue.js Principle

#Simple use of vuex

The above is the detailed content of postman+json+springmvc test batch adding instances. 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