Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evrentan/2bd3eeee1485959aba35c036a4025f62 to your computer and use it in GitHub Desktop.
Save evrentan/2bd3eeee1485959aba35c036a4025f62 to your computer and use it in GitHub Desktop.
Add Resource Handlers for SwaggerConfig
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("swagger-ui.html")
.addResourceLocations("classpath:/META-INF/resources/");
registry.addResourceHandler("/webjars/**")
.addResourceLocations("classpath:/META-INF/resources/webjars/");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment