02 2021 档案
摘要:上手: 自顶向下 with recursive tree AS ( select dep.id,dep.name,dep.parent_id from department dep where dep.id = 1 union all select dep.id,dep.name,dep.paren
阅读全文
摘要:方式一RLock lock = redissonClient.getLock("Export:create:" + Context.get().getCorpId());try { if (lock.tryLock(5, 10, TimeUnit.SECONDS)) { //业务处理 } else
阅读全文