0

I develop a not-so-RESTful API using Jersey and Jackson. All the API calls are annotated with @Path, @GET/@POST, @Produces and @Consumes. I managed to generate a nice API documentation using enunciate.

The question is:

Is it possible to tell enunciate to create a single HTML page that would contain an index with all the API calls?

Andrey Vetlugin
  • 960
  • 10
  • 17

1 Answers1

0

You'd have to try your own custom freemarker transform to output your own index page. See Applying a Custom Skin for more information.

You could also try using Enunciate's new Swagger integration. Swagger UI is kind of an index...

Ryan Heaton
  • 1,173
  • 7
  • 11