使用JPA中@Query 注解实现update 操作
使用JPA中@Query 注解实现update 操作,代码如下:@Transactional@Modifying(clearAutomatically = true)@Query(value = "update info p set p.status =?1 where p.id = ?2",nativeQuery = true)int updateStatusById( Strin...