How to create javadoc of a grails project
There is a way t开发者_JAVA技巧o create javadoc for a grails project? (It makes sense?)
grails doc
and look for your docs in target/docs/api (Java) and target/docs/gapi (Groovy).
'grails-runtime-docs' plugin ( http://grails.org/plugin/grails-runtime-docs , contributed to grails by myself) is more grails aware. It will also generate the dynamic methods and also categorize the classes into Controllers, Commands, Domains, Services and Tag Libraries.
Run:-
grails install-plugin grails-runtime-docs
and then
grails runtime-docs
精彩评论