Name Clash even though I'm not using both interfaces

1.2k Views Asked by At

I'm getting this annoying message :

Error:(8, 8) java: name clash: save(java.lang.Iterable) in org.springframework.data.repository.CrudRepository and save(java.lang.Iterable) in org.springframework.data.jpa.repository.JpaRepository have the same erasure, yet neither overrides the other

I'm not using CrudRepository in my code, so how come im getting this weird message? How can I fix it?

1

There are 1 best solutions below

0
On BEST ANSWER

Its a dependency issue. The following dependency resolves the issue

  <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-commons-core</artifactId>
        <version>**1.2.1.RELEASE**</version>
  </dependency>