|
|
@ -1,3 +1,4 @@ |
|
|
|
/* |
|
|
|
package com.yxt.anrui.flowable.config; |
|
|
|
|
|
|
|
import org.flowable.common.engine.impl.persistence.StrongUuidGenerator; |
|
|
@ -6,13 +7,17 @@ import org.flowable.spring.boot.EngineConfigurationConfigurer; |
|
|
|
import org.flowable.spring.boot.ProcessEngineConfigurationConfigurer; |
|
|
|
import org.springframework.context.annotation.Bean; |
|
|
|
import org.springframework.context.annotation.Configuration; |
|
|
|
import org.springframework.context.annotation.Profile; |
|
|
|
|
|
|
|
*/ |
|
|
|
/** |
|
|
|
* @description: |
|
|
|
* @author: dimengzhe |
|
|
|
* @date: 2025/4/21 |
|
|
|
**/ |
|
|
|
**//*
|
|
|
|
|
|
|
|
@Configuration |
|
|
|
@Profile("test") |
|
|
|
public class FlowableUuidConfig { |
|
|
|
|
|
|
|
@Bean |
|
|
@ -20,3 +25,4 @@ public class FlowableUuidConfig { |
|
|
|
return configuration -> configuration.setIdGenerator(new StrongUuidGenerator()); |
|
|
|
} |
|
|
|
} |
|
|
|
*/ |
|
|
|