Flemming Nørnberg Larsen

Results 3 comments of Flemming Nørnberg Larsen

Perhaps this is caused by `spring-boot-starter-data-jpa` 2.5.x?

I found a work-around where I add a default implementation on my CrudRepository for `deleteAllById(Iterable)`: ```java @Repository public interface CachedSimulatedFaultRepository extends CrudRepository { ... // Work-around to avoid: // com.mmnaseri.utils.spring.data.error.DataOperationDefinitionException:...

Perhaps it is "just" the repository implementations in spring-data-mock like the DefaultCrudRepository that needs those delete methods to satisfy Spring Boot 2.5.x? https://github.com/mmnaseri/spring-data-mock/blob/development/spring-data-mock/src/main/java/com/mmnaseri/utils/spring/data/repository/DefaultCrudRepository.java