postman初体验 以及@RequestBody
程序员文章站
2022-03-20 08:22:53
...
@RequestBody用于在请求体中获取参数,一般为json或者xml格式的数据。
本文示例使用postman请求保存数据接口,将json格式的数据保存到elasticsearch中。
目录
一、编写controller接口
package cn.jack.elasticsearchdemo.controller;
import cn.jack.elasticsearchdemo.domain.Person;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.elasticsearch.core.ElasticsearchOperations;
import org.springframework.data.elasticsearch.core.mapping.IndexCoordinates;
import org.springframework.data.elasticsearch.core.query.GetQuery;
import org.springframework.data.elasticsearch.core.query.IndexQuery;
import org.springframework.data.elasticsearch.core.query.IndexQueryBuilder;
import org.springframework.web.bind.annotation.*;
@RestController
@RequestMapping("/op")
public class OperationController {
@Autowired
private ElasticsearchOperations elasticsearchOperations;
/**
* 保存数据,Content-Type为application/json的数据,需要使用@RequestBody注解接收
* @return
*/
@PostMapping("/person")
public String save(@RequestBody Person person) {
IndexQuery indexQuery = new IndexQueryBuilder()
.withId(person.getId())
.withObject(person)
.build();
IndexCoordinates indexCoordinates = IndexCoordinates.of("jack_person");
String documentId = elasticsearchOperations.index(indexQuery, indexCoordinates);
return documentId;
}
/**
* 通过id查找Person数据
* @param id
* @return
*/
@GetMapping("/person/{id}")
public Person findById(@PathVariable("id") String id) {
Person person = elasticsearchOperations
.queryForObject(GetQuery.getById(id), Person.class);
return person;
}
}
二、postman发送请求
启动应用,postman请求save接口。
三、测试
访问查询接口,确认数据保存成功。
推荐阅读
-
@RequestBody和@ResponseBody的使用情形以及RestTemplate的http报文转换
-
hybird简介以及安卓应用hybird初体验
-
vue 3初体验以及和vue 2的区别
-
趣谈MySQL历史,以及MariaDB初体验
-
idea配置gurobi以及gurobi的初体验
-
Flutter初体验以及认识常用的Widget
-
There was an unexpected error (type=Bad Request, status=400).以及@RequestBody和@RequestParam区别
-
postman传参时,解决Date类型参数的格式化问题初体验01
-
@RequestBody和@ResponseBody的使用情形以及RestTemplate的http报文转换
-
总结-postman连接Mysql几种方式,以及接口方式做Mysql基本操作