我正在尝试使用Spring Boot连接到我的外部ElasticSearch服务器。
如果我从命令行进行卷曲,我会得到预期的结果。
curl "http://ipAddr:9200/indexName/TYPE/_search?pretty=true"
但是当我尝试通过Spring Boot访问它时出现此错误。
<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Mon Sep 11 12:39:15 IST 2017</div><div>There was an unexpected error (type=Internal Server Error, status=500).</div><div>Could not write JSON: (was java.lang.NullPointerException); nested exception is com.fasterxml.jackson.databind.JsonMappingException: (was java.lang.NullPointerException) (through reference chain: java.util.ArrayList[0]->org.springframework.data.elasticsearch.core.aggregation.impl.AggregatedPageImpl["facets"])</div></body></html>
不确定为什么NullPointerException
和aggregartion.impl
这是我的Spring应用程序:
控制器:
@RestController
public class PojoController {
@Autowired
PojoService pojoService;
@RequestMapping(value = "/", method=RequestMethod.GET)
public @ResponseBody String index() {
return new String("Welcome:)");
}
@RequestMapping(value = "/all", method = RequestMethod.GET,
produces = { MediaType.APPLICATION_JSON_VALUE })
@ResponseBody List<POJO> findAll() {
try {
List<POJO> pojoObj = pojoService.findAll();
return pojoObj;
} catch (Exception exp) {
exp.printStackTrace();
return null;
}
}
}
存储库:
@Repository
public interface PojoRepository extends ElasticsearchRepository<POJO, Integer> {
List<POJO> findAll();
}
服务:
@Service
public class POJOServiceImpl implements POJOService{
private POJORepository pojoRepository;
private ElasticsearchTemplate elasticsearchTemplate;
@Autowired
public void setPojoRepository(PojoRepository pojoRepository) {
this.pojoRepository = pojoRepository;
}
public POJO findOne(String id) {
return pojoRepository.findOne(id);
}
public List<POJO> findAll() {
return (List<POJO>) pojoRepository.findAll();
}
}
POJO课程:
@Document(indexName = "INDEX", type = "TYPE")
public class POJO {
@Id
private Integer id;
private String name;
public POJO(){
// empty
}
public POJO(Integerid, String name) {
super();
this.id = id;
this.name = name;
}
// getters and setters
}
我应该能够查询索引中的所有文档。稍后,我将尝试使用过滤器等。
感谢任何帮助。谢谢:))
答案 0 :(得分:5)
看起来杰克逊在处理你的POJO时遇到了问题(可能与这个问题有关:DATAES-274) - 有问题的部分是从Iterable
集合到List
的存储库中。
对于存储库,spring-data-elasticsearch的行为与您预期的略有不同。举个例子:
@Repository
public interface PojoRepository extends ElasticsearchRepository<POJO, Integer> {
List<POJO> findAll();
}
并且在你的休息控制器中打电话后:
List<POJO> pojoObj = pojoService.findAll();
在调试器中你会看到类似这样的东西:
您希望pojoObj
列表包含POJO类的对象。
令人惊讶的是 - pojoObj
ArrayList包含一个AggregatedPageImpl
类型的对象,其content
字段是包含POJO对象的正确列表。
这就是你得到的原因:
Could not write JSON: ... java.util.ArrayList[0]->org.springframework.data.elasticsearch.core.aggregation.impl.AggregatedPageImpl[\"facets\"])
正如我之前所写,杰克逊在序列化POJO对象时无法处理这个问题。
解决方案1
让存储库返回Iterable
集合(默认情况下)。
@Repository
public interface PojoRepository extends ElasticsearchRepository<POJO, Integer> {
}
将转换部分移动到服务但使用一些实用工具方法(此处使用Guava),以便像这样:
import com.google.common.collect.Lists;
public List<POJO> findAll() {
return Lists.newArrayList(pojoRepository.findAll());
}
解决方案2
在存储库中使用Page
(此处为不带参数的简化版本):
@Repository
public interface PojoRepository extends ElasticsearchRepository<POJO, Integer> {
Page<TestDto> findAll();
}
如果您仍希望在列表中操作 - 从服务页面获取内容:
public List<POJO> findAll() {
return testDtoRepository.findAll().getContent();
}