hutututu
hutututu

Reputation: 249

Generating REST api documentation in spring jersey rest

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

Answers (1)

Ron
Ron

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

Related Questions