shodz
shodz

Reputation: 384

Spring Boot are there Swagger Annotation on Rest Controllers

In Spring Boot are there Swagger annotations that I use on rest controller methods to describe the input and output mime types?

Upvotes: 1

Views: 61

Answers (1)

Sudip Bhandari
Sudip Bhandari

Reputation: 2255

Yes. You can use "consumes" and "produces" annotation parameters for input and output Mime.

MIME type in swagger

Upvotes: 1

Related Questions