1. 出现“The content of thebody cannot be displayed in the form view. Please switch to the source view toexamine the raw content.”原因: 重新部署deploy.xml文件,重新放在tomcat/webapps/ode/processes文件夹下,重启tomcat。
前言 随着项目的迭代,代码中存在的分支判断可能会越来越多,当里面涉及到的逻辑比较复杂或者分支数量实在是多的难以维护的时候,我们就要考虑下,有办法能让这些代码变得更优雅吗? 正文 使用枚举 这里我们简单的定义一个表示状态的枚举。 public enum Status {NEW(0),RUNNABLE(1),RUNNING(2),BLOCKED(3),DEAD(4);public int sta