我实际上正在尝试使用PlantUml生成组件图。是否可以定义不同组件的相对位置?我要定义的是:ComponentB离开了ComponentA。 ComponentC低于ComponentA,...

最佳答案

一种典型的方法是将一行标记为hidden

要记住的一件事是,从左到右的hidden和从上到下的->行仅支持-->,因此您需要相应地放置左侧和右侧(似乎不支持语法X <[hidden]- Y )。

@startuml
class ComponentA

ComponentB -[hidden]> ComponentA
ComponentA -[hidden]-> ComponentC
@enduml

plantuml - PlantUml定义组件的相对位置-LMLPHP

另请参阅How to correct PlantUML Line Path了解更多定位技巧。

09-30 20:06