JPA更新操作手写SQL 传入vo或者dto对象

2022/7/8 2:20:22

本文主要是介绍JPA更新操作手写SQL 传入vo或者dto对象,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.JPA手写sql进行更新操作(解析实体类)
  1. 添加注解
@Modifying @Transactional
  1. 开启原生sql,nativeQuery = true
接口参数添加@Param注解指定别名 编写sql语句 :#{#userInDto.userName} 数据绑定占位使用 :#{#实体类.属性} /* 手写sql进行更新用户操作 */ @Modifying @Transactional @Query(nativeQuery = true,value = "update my_user set user_name=:#{#userInDto.userName},age=:#{#userInDto.age},email=:#{#userInDto.email},sex=:#{#userInDto.sex} where id=:#{#userInDto.id}") int updateMyUser(@Param("userInDto") MyUserInDto userInDto);  

这篇关于JPA更新操作手写SQL 传入vo或者dto对象的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程