为了账号安全,请及时绑定邮箱和手机立即绑定

springboot jpa DynamicUpdate

老师,hibernate 的 DynamicUpdate注解怎么在springboot JPA中使用呢?
SuserRepository:
public interface SuserRepository extends JpaRepository<Suser,Long>{
}
SuserService:
public Suser save(Suser suser){
    return suserRepository.save(suser);
}
可是并不能实现hibernate中的效果
Suser:
@Entity
@SelectBeforeUpdate(true)
@DynamicUpdate(true)
public class Suser implements Serializable {
……
}

正在回答

举报

0/150
提交
取消
2小时学会Spring Boot
  • 参与学习       151587    人
  • 解答问题       1079    个

Spring Boot入门视频教程,你将学会使用Spring Boot快速构建应用程序

进入课程

springboot jpa DynamicUpdate

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信