Intellij Idea Intellij无法识别BPMN的XML

daupos2t  于 2023-04-29  发布在  其他
关注(0)|答案(2)|浏览(441)

这一切都是突然发生的我有一个现有的Activiti项目。我安装了Activiti BPMN Visualizer插件。现在在我的每一个。bpmn20.xml文件,Idea是说“元素x必须声明”或“不能解析符号”下面是一个例子:

<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:activiti="http://activiti.org/bpmn"
         xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI"
         xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI"
         typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath"
         targetNamespace="http://www.activiti.org/processdef">
<process id="test" name="test" isExecutable="true">
</process>
<bpmndi:BPMNDiagram id="BPMNDiagram_test">
    <bpmndi:BPMNPlane bpmnElement="test" id="BPMNPlane_test">
    </bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>

定义和过程的标记显示为红色,问题选项卡中有错误。使用带名称空间的标记,例如bpmndi:BPMNDiglap,就可以了。发生了什么,我该如何解决?

h6my8fg2

h6my8fg21#

如果它突然出现,尝试invalidate the cache并重新启动ide。

mzmfm0qo

mzmfm0qo2#

查看PolyBPMN可视化工具Intellij IDEA插件https://plugins.jetbrains.com/plugin/21361-polybpmn-visualizer
它支持扩展名为 * 的文件。bpmn,*. bpmn.xml *.bpmn20。
参见 www.example.com

相关问题