2

I'm looking for a tool which can document the @RequestMapping & @RequestParam annotations on a Spring MVC controller to build some kind of api which I can then give to people consuming my service. Does anyone know if such a tool is available ?

MikePatel
  • 2,593
  • 2
  • 24
  • 38

1 Answers1

1

Another tool is spring-doclet

https://github.com/scottfrederick/springdoclet

It's a couple of years old but produces a nice output from your javadoc annotated files.

drei01
  • 308
  • 5
  • 15
  • Aaah, very nice. I actually ended up implementing my own maven reporting plugin to do EXACTLY this. This one is nicer though. – MikePatel Jul 30 '12 at 12:42