百木园-与人分享,
就是让自己快乐。

flowable 工作流生成的png图片汉字乱码

flowable 流程图片中文乱码

1.springboot添加配置类,指定字体类型为宋体

package org.fh.config;

import org.flowable.spring.SpringProcessEngineConfiguration;
import org.flowable.spring.boot.EngineConfigurationConfigurer;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Controller;

/**
 * 说明:Flowable配置
 * 作者:FH Admin
 * from:fhadmin.cn
 */
@Controller
@Configuration
public class FlowableConfig implements EngineConfigurationConfigurer<SpringProcessEngineConfiguration> {
	
    @Override
    public void configure(SpringProcessEngineConfiguration engineConfiguration) {
        engineConfiguration.setActivityFontName(\"宋体\");
        engineConfiguration.setLabelFontName(\"宋体\");
        engineConfiguration.setAnnotationFontName(\"宋体\");
    }
    
}

2. 操作系统字体库,有宋体字体资源。  windows操作系统基本都有宋体,linux等一般没有,需要自行添加

 

​-----------------------------------------------------------------自定义表单
28. 定义模版:拖拽左侧表单元素到右侧区域,编辑表单元素,保存表单模版
29. 表单模版:编辑维护表单模版,复制表单模版,修改模版类型,预览表单模版
30. 我的表单:选择表单模版,编辑表单规则,是否上传图片、附件、开启富文本、挂靠流程开关等
31. 表单数据:从我的表单进去可增删改查表单数据,修改表单规则
32. 挂靠记录:记录表单数据和流程实例ID关联记录,可删除wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==


来源:https://www.cnblogs.com/m13002622490/p/16088482.html
本站部分图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » flowable 工作流生成的png图片汉字乱码

相关推荐

  • 暂无文章