给定以下实体:
@NodeEntity
public final class Foo
{
@GraphId
private Long id;
@Indexed
private String name;
}
存储库:
public interface FooRepository extends GraphRepository<Foo> {}
服务:
@Service
public class FooService
{
@Autowired FooRepository fooRepo;
public List<Foo> searchFor() {
EndResult<Foo> results = fooRepo.findAllByPropertyValue("name","*");
results.size(); //no results
}
}
我依赖于 中的函数,IndexRepository
因为我想利用 Lucene 查找。但是,上面的查询没有返回任何东西。