搭建heima-leadnews-schudule模块
一、heima-leadnews-schedule是一个通用的服务,单独创建模块来管理任何类型的延迟任务
二、在service下搭建heima-leadnes-schedule微服务模块,用以对其它服务提供延迟任务处理服务。
MySQL中,BLOB是一个二进制大型对象,是一个可以存储大量数据的容器;LongBlob 最大存储 4G
悲观锁(Pessimistic Lock):每次去拿数据的时候都认为别人会修改,所以每次在拿数据的时候都会上锁。
乐观锁(Optimistic Lock):每次去拿数据的时候都认为别人不会修改,所以不会上锁,但是在更新的时候会判断一下在此期间别人有没有去更新这个数据,可以使用版本号等机制。
mybatis-plus集成乐观锁的使用:
(1)在实体类中使用@Version标明是一个版本的字段
(2)mybatis-plus对乐观锁的支持,在启动类中向容器中放入乐观锁的拦截器
@Bean public MybatisPlusInterceptor optimisticLockerInterceptor(){ MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor()); return interceptor; }