实现增加数据接口

This commit is contained in:
2018-05-19 16:56:01 +08:00
parent 8fab922b00
commit 92b5d778d2
2 changed files with 76 additions and 2 deletions

View File

@@ -0,0 +1,74 @@
package top.fjy8018.elasticsearch.Controller;
import lombok.extern.slf4j.Slf4j;
import org.elasticsearch.action.index.IndexResponse;
import org.elasticsearch.client.transport.TransportClient;
import org.elasticsearch.common.xcontent.XContentBuilder;
import org.elasticsearch.common.xcontent.XContentFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* @author F嘉阳
* @date 2018-05-19 16:33
*/
@RestController
@RequestMapping("/add/book")
@Slf4j
public class AddBookController {
@Autowired
private TransportClient client;
/**
* 插入数据
* @param title
* @param author
* @param wordCount
* @param publishDate 限定日期格式为yyyy-MM-dd
* @return
*/
@PostMapping("/novel")
public ResponseEntity add(@RequestParam(name = "title") String title,
@RequestParam(name = "author") String author,
@RequestParam(name = "word_count") int wordCount,
@RequestParam(name = "publish_date")
@DateTimeFormat(pattern = "yyyy-MM-dd") Date publishDate) {
String type = "novel";
// 格式化日期
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String dateStr = sdf.format(publishDate);
try {
// 用自带的构造文档
XContentBuilder content = XContentFactory.jsonBuilder().startObject()
.field("title",title)
.field("author",author)
.field("word_count",wordCount)
.field("publish_date",dateStr)
.field("type",type)
.endObject();
IndexResponse response = this.client.prepareIndex("book",type).setSource(content).get();
// 返回结果带上新增的ID
return new ResponseEntity(response.getId(), HttpStatus.OK);
} catch (IOException e) {
e.printStackTrace();
log.error("【title】"+title+"【author】"+author+"【wordCount】"+wordCount+"【publishDate】"+publishDate);
return new ResponseEntity(HttpStatus.INTERNAL_SERVER_ERROR);
}
}
}

View File

@@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.RestController;
* @date 2018-05-19 16:31
*/
@RestController
@RequestMapping("/get")
@RequestMapping("/get/book")
@Slf4j
public class GetBookController {
@@ -28,7 +28,7 @@ public class GetBookController {
* @param id
* @return
*/
@GetMapping("/book/novel")
@GetMapping("/novel")
public ResponseEntity get(@RequestParam(name = "id") String id){
if (id==null){
return new ResponseEntity(HttpStatus.NOT_FOUND);