
乐观锁
o_瓜田李下_o
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
springboot jpa 乐观锁
springboot jpa乐观锁 ************************** 相关注解 @Target({ElementType.METHOD, ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface Version { } *******************...原创 2019-09-13 15:39:05 · 521 阅读 · 0 评论 -
springboot mybatis 乐观锁
mybatis乐观锁 ***************************** 相关注解 @Target({ElementType.FIELD, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface Version { Class<? extends NextVer...原创 2019-09-16 10:21:18 · 539 阅读 · 3 评论 -
springboot mybatis plus 乐观锁
mybatisplus乐观锁 *************************** 相关注解 @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.FIELD}) public @interface Version { } 支持的数据类型:int 、Integer、long、Long...原创 2019-09-17 21:59:41 · 501 阅读 · 0 评论