-
现在类级别支持可以自己通过配置控制哪些类自动生成文档。在方法级别,只支持哪些方法ignore,这对新项目来说可以解决痛点,但是对老项目来说,可能一个类里面已经有很多很多方法了,且已经有手撸的文档,这时候只能通过ignore来控制的话,需要写很多@ignore。针对这种场景,可以支持在Class和Method上分别打上标记,来表示这个类打了标记的方法才会导出文档吗? |
Beta Was this translation helpful? Give feedback.
Answered by
tangcent
Aug 3, 2024
Replies: 1 comment
-
如果标记是注释的tag的话,可以这样配:
如果你只想在方法上标注,就改成这样: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tauhuang
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
如果标记是注释的tag的话,可以这样配:
ignore=!#export
这样只有类上和方法上都注释了export才能被导出。
如果你只想在方法上标注,就改成这样:
ignore[groovy:it.contextType()=="method"]=!#export