优化工程目录结构

This commit is contained in:
2018-05-19 16:33:18 +08:00
parent 2b2867ea9c
commit 8fab922b00
2 changed files with 45 additions and 35 deletions

View File

@@ -0,0 +1,45 @@
package top.fjy8018.elasticsearch.Controller;
import lombok.extern.slf4j.Slf4j;
import org.elasticsearch.action.get.GetResponse;
import org.elasticsearch.client.transport.TransportClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
/**
* @author F嘉阳
* @date 2018-05-19 16:31
*/
@RestController
@RequestMapping("/get")
@Slf4j
public class GetBookController {
@Autowired
private TransportClient client;
/**
* 根据ID查询结果
* @param id
* @return
*/
@GetMapping("/book/novel")
public ResponseEntity get(@RequestParam(name = "id") String id){
if (id==null){
return new ResponseEntity(HttpStatus.NOT_FOUND);
}
GetResponse response = this.client.prepareGet("book","novel",id).get();
if (!response.isExists()){
log.error("【查询为空】ID="+id);
return new ResponseEntity(HttpStatus.NOT_FOUND);
}
return new ResponseEntity(response.getSource(), HttpStatus.OK);
}
}

View File

@@ -1,52 +1,17 @@
package top.fjy8018.elasticsearch;
import lombok.extern.slf4j.Slf4j;
import org.elasticsearch.action.get.GetResponse;
import org.elasticsearch.client.transport.TransportClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
@Slf4j
public class ElasticsearchApplication {
@Autowired
private TransportClient client;
@GetMapping("/")
public String index(){
return "index";
}
/**
* 根据ID查询结果
* @param id
* @return
*/
@GetMapping("/get/book/novel")
public ResponseEntity get(@RequestParam(name = "id") String id){
if (id==null){
return new ResponseEntity(HttpStatus.NOT_FOUND);
}
GetResponse response = this.client.prepareGet("book","novel",id).get();
if (!response.isExists()){
log.error("【查询为空】ID="+id);
return new ResponseEntity(HttpStatus.NOT_FOUND);
}
return new ResponseEntity(response.getSource(), HttpStatus.OK);
}
public static void main(String[] args) {
SpringApplication.run(ElasticsearchApplication.class, args);
}