美文网首页
Spring boot ElasticSearch,出现Elas

Spring boot ElasticSearch,出现Elas

作者: 吕志豪 | 来源:发表于2018-02-07 14:47 被阅读0次
  • 在使用实体类上同时注解@Entity @Document
  • jpa search Repository放在同一个包下面
    会出现这个错误
    解决方案:
  • 将jpa search Repository放在不同的包下面
@EnableElasticsearchRepositories(basePackages = "com.xxxx.elsearchrepository")
@EnableJpaRepositories(basePackages = {"com.xxxx.jparepository"})

相关文章

网友评论

      本文标题:Spring boot ElasticSearch,出现Elas

      本文链接:https://www.haomeiwen.com/subject/sgaozxtx.html