我工作中用到了JPA,最近用到了delete,之前也解决过一次,没太在意,今天又遇到了
public interface ARepository extends JpaRepository<A, String>{
A deleteByBAndC(B b, C c);
}
一开始我事返回值是删除的这个记录,发现给我报错,说什么Integer不能转化为A,我看了半天业务代码,没错啊
原来错在这里,delete的操作不能有返回值,为什么?我们看继承类JpaRepository,又继承了PagingAndSortingRepository(用来分页的),有一个CrudRepository(定义了基本的CRUD操作),我们会发现这个类的返回值是空!
修改:
public interface ARepository extends JpaRepository<A, String>{
void deleteByBAndC(B b, C c);
}
这就对了!