I moved my project from spring-boot 2.1.9 to 2.2.0.
While starting the project, I am facing the below error messages.
error
Caused by: org.sprin
Best Solution
Add below code in SwaggerConfig class
@Bean public LinkDiscoverers discovers() { List plugins = new ArrayList<>(); plugins.add(new CollectionJsonLinkDiscoverer()); return new LinkDiscoverers(SimplePluginRegistry.create(plugins));[enter image description here][1] }