Reputation: 384
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
Reputation: 2255
Yes. You can use "consumes" and "produces" annotation parameters for input and output Mime.
Upvotes: 1