Skip to content

Commit

Permalink
class hierarchy usage in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
gaopeng71 committed Aug 22, 2023
1 parent 3f6a838 commit 11a561f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions doc/ReverseModelingGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ mvn io.github.dddplus:dddplus-maven-plugin:visualize \
-DpkgRef=${包级别交叉调用报告输出到哪一个文件, dot格式} \
-DcallGraph=${核心方法调用关系报告输出到哪一个文件, dot格式} \
-DplantUml=${业务模型输出到哪一个文件, svg格式} \
-DtextModel=${业务模型输出到哪一个文件, txt格式}
-DtextModel=${业务模型输出到哪一个文件, txt格式} \
-DclassHierarchy=${类关系图, dot格式} \
-DclassHierarchyIgnoreParents={逗号分隔的忽略的父类名称,例如Serializable}
```

例如:
Expand All @@ -32,7 +34,9 @@ mvn io.github.dddplus:dddplus-maven-plugin:visualize \
-DpkgRef=doc/pkgref.dot \
-DcallGraph=doc/callgraph.dot \
-DplantUml=doc/myapp.svg \
-DtextModel=doc/myapp.txt
-DtextModel=doc/myapp.txt \
-DclassHierarchy=doc/classHierarchy.dot \
-DclassHierarchyIgnoreParents=Serializable
```

执行后,就可以在doc目录下看到一些自动生成的报告。例如,在`doc/myapp.txt`文件,会看到:
Expand Down

0 comments on commit 11a561f

Please sign in to comment.