netgloo / spring-boot-samples

Spring Boot samples by Netgloo
http://netgloo.com
MIT License
1.52k stars 1.91k forks source link

can you upgrade spring-boot version in spring-boot-hibernate-search? #8

Closed atjiu closed 7 years ago

atjiu commented 7 years ago

I clone this project and run , all is right;

but my project use spring-boot version is 1.5.2 , i copy code to my project and run then it's throw an Exception

Handler dispatch failed; nested exception is java.lang.NoSuchMethodError: org.hibernate.engine.spi.SessionDelegatorBaseImpl.(Lorg/hibernate/engine/spi/SessionImplementor;)V
atjiu commented 7 years ago

use this then it work

<dependency>
      <groupId>org.hibernate</groupId>
      <artifactId>hibernate-search-orm</artifactId>
      <version>5.6.0.Final</version>
    </dependency>

thx