Spring Data: “delete by” is supported?

后端 未结 9 2279
长情又很酷
长情又很酷 2020-11-28 20:57

I am using Spring JPA for database access. I am able to find examples such as findByName and countByName, for which I dont have to write any method implementation. I am hopi

9条回答
  •  南笙
    南笙 (楼主)
    2020-11-28 21:33

    Derivation of delete queries using given method name is supported starting with version 1.6.0.RC1 of Spring Data JPA. The keywords remove and delete are supported. As return value one can choose between the number or a list of removed entities.

    Long removeByLastname(String lastname);
    
    List deleteByLastname(String lastname);
    

提交回复
热议问题