I have a web service with several paths. I want to add a description to each one. I added the name using @Api(value = "serviceName1") however the description attribute is deprecated and even if i use it it is not showing in Swagger UI. I even tried the SwaggerDefinition annotation and filled the description attribute in it with no result displayed:
@SwaggerDefinition(
info = @Info(
description = "text here ", title = "", version = ""))
I tried to create in the same way a tag with description and it didn't work as well.
Can anyone help to find any way to be able to add a note or description to the service similarly to the way we add a note to the Api Operation.