springdataJPA注解提交更新数据
Posted 大梦千年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springdataJPA注解提交更新数据相关的知识,希望对你有一定的参考价值。
@Transactional
@Modifying(clearAutomatically = true)
@Query(value ="update user set gender=:gender,phone=:phone,email=:email,updatetime=:updatetime,remarks=:remarks where u_id=:u_id", nativeQuery=true)
int update(String name, BigDecimal height, BigDecimal weight, int id);
参考:
@Transactional 作用:用于提交事务
@Modifying(clearAutomatically = true) 作用:自动清除实体里保存的数据
以上是关于springdataJPA注解提交更新数据的主要内容,如果未能解决你的问题,请参考以下文章
springboot整合springDataJPA(替代了MyBatis)
Spring Data JPA - 防止一对一关系的双重表单提交