码迷,mamicode.com
首页 > 编程语言 > 详细

springData jpa update delete

时间:2014-07-22 18:19:02      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:springdata jpa update delete @modifying @query

使用@Modifying + @Query 实现springData 对数据的 update delete


public interface ICustomer extends JpaRepository<Customer, Long>
{
    @Modifying
    @Query("delete Customer where isLogicDel = 0 and dispatchDate  = ?1 ")
    public int deleteCustomer(Date dispatchDate);
    
    
    @Modifying
    @Query("update Customer d set d.isLogicDel = 1  where d.member.id = ?1 and d.dispatchDate  = ?2 ")
    public int updateCustomer(Long memberId, Date dispatchDate);
}


springData jpa update delete

标签:springdata jpa update delete @modifying @query

原文地址:http://amadis.blog.51cto.com/2723533/1441301

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!