2021
01-10
01-10
MP(MyBatis-Plus)实现乐观锁更新功能的示例代码
实现步骤step1:添加乐观锁拦截器MP的其他拦截器功能可以参考官网@BeanpublicMybatisPlusInterceptormybatisPlusInterceptor(){MybatisPlusInterceptorinterceptor=newMybatisPlusInterceptor();interceptor.addInnerInterceptor(newOptimisticLockerInnerInterceptor());returninterceptor;}step2:配置Entity@TableField(fill=FieldFill.UPDATE)@VersionprivateDateupdateTime;用更新字段充当版本号。上面...
继续阅读 >