暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

Flowable6.6 - ID生成器

字痕随行 2020-11-30
1056

最近被Flowable的自定义缓存搞的神烦,今天先看看如何自定义它的ID生成器,后面再细说缓存的事。


如果只是想使用自定义ID生成策略,只需要以下代码就好了:

configuration.setIdGenerator(new IdGenerator() {
    @Override
    public String getNextId() {
        //这里使用hutool的UUID工具类生成
        return IdUtil.simpleUUID();
    }
});

复制


便启动个流程,就可以看到所有的ID都变成UUID了


如果还想了解一下为什么,可以继续往下看。


在UserTaskActivityBehavior的execute()中可以找到创建Task的方法。


这个方法可以追踪到TaskHelper中,一路追踪下去:

TaskHelper.insertTask->
TaskService.insertTask->
TaskEntityManagerImpl.insert->
AbstractEntityManager.insert->
AbstractDataManager.insert->
DbSqlSession.insert->
String id = idGenerator.getNextId();

复制


就可以找到为Task赋予ID的方法,至于idGenerator来源于哪里,其实是在ProcessEngineConfigurationImpl中。

public void initIdGenerator() {
        if (idGenerator == null) {
            DbIdGenerator dbIdGenerator = new DbIdGenerator();
            dbIdGenerator.setIdBlockSize(idBlockSize);
            idGenerator = dbIdGenerator;
        }

        if (idGenerator instanceof DbIdGenerator) {
            DbIdGenerator dbIdGenerator = (DbIdGenerator) idGenerator;
            if (dbIdGenerator.getIdBlockSize() == 0) {
                dbIdGenerator.setIdBlockSize(idBlockSize);
            }
            if (dbIdGenerator.getCommandExecutor() == null) {
                dbIdGenerator.setCommandExecutor(getCommandExecutor());
            }
            if (dbIdGenerator.getCommandConfig() == null) {
                dbIdGenerator.setCommandConfig(getDefaultCommandConfig().transactionRequiresNew());
            }
        }
    }

复制


同样,在这个方法中可以发现我们之前自定义ID生成策略的Set方法:

public ProcessEngineConfigurationImpl setIdGenerator(IdGenerator idGenerator) {
    this.idGenerator = idGenerator;
    return this;
}

复制


以上就是自定义ID生成策略的简单实现,如有错误,欢迎指正。


觉的不错?可以关注我的公众号↑↑↑


文章转载自字痕随行,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论