Hide return value from a Spring MVC controller in SpringFox 2 -




i have async spring mvc controller returns future. springfox 2 renders this:

enter image description here

how remove it? thank in advance!

i resolved issue adding following method call sprinffox's docket:

.genericmodelsubstitutes(responseentity.class, completablefuture.class) 

hope someone.





wiki

Comments