问题
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:
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>
来源:https://stackoverflow.com/questions/30459151/name-clash-even-though-im-not-using-both-interfaces