activiti在部署时会生成流程图文件并部署,但是在节点中有中文的时候会出现乱编
查看源代码发现是 Graphics2D.drawString 出现乱码 。
修改 ProcessDiagramCanvas.java 中
Font font = new Font("Arial", 1, 11);
this.g.setFont(font);
为
Font font = new Font("宋体", Font.PLAIN, 12);
this.g.setFont(font);
查看源代码发现是 Graphics2D.drawString 出现乱码 。
修改 ProcessDiagramCanvas.java 中
Font font = new Font("Arial", 1, 11);
this.g.setFont(font);
为
Font font = new Font("宋体", Font.PLAIN, 12);
this.g.setFont(font);