Reputation: 249
My project exposes rest api through Jersey along with spring and spring data at backend. I want to implement REST api documentation, in my project. Any ideas, as how can I achieve this.
Thanks!
Upvotes: 0
Views: 235
Reputation: 14840
swagger-core is probably the most common library for integration with JAX-RS projects to produce Swagger definitions. Its wiki contains the relevant information on how to integrate it with your code (including sample projects).
Upvotes: 1