You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
676 B
24 lines
676 B
|
7 months ago
|
package com.ruoyi.flowable.flow;
|
||
|
|
|
||
|
|
import org.flowable.spring.SpringProcessEngineConfiguration;
|
||
|
|
import org.flowable.spring.boot.EngineConfigurationConfigurer;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author XuanXuan
|
||
|
|
* @date 2021/4/5 01:32
|
||
|
|
*/
|
||
|
|
@Configuration
|
||
|
|
public class FlowableConfig implements EngineConfigurationConfigurer<SpringProcessEngineConfiguration> {
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public void configure(SpringProcessEngineConfiguration engineConfiguration) {
|
||
|
|
engineConfiguration.setActivityFontName("宋体");
|
||
|
|
engineConfiguration.setLabelFontName("宋体");
|
||
|
|
engineConfiguration.setAnnotationFontName("宋体");
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|