Skip to content

Instantly share code, notes, and snippets.

@CheolhoJeon
Created April 29, 2020 03:01
Show Gist options
  • Save CheolhoJeon/bd9762ed6cb1073f5cdad5da81a597b9 to your computer and use it in GitHub Desktop.
Save CheolhoJeon/bd9762ed6cb1073f5cdad5da81a597b9 to your computer and use it in GitHub Desktop.
@Configuration
@EnableWebMvcpublic class MvcConfig implements WebMvcConfigurer {
@Override
public void configureDefaultServletHandling(final DefaultServletHandlerConfigurer configurer) {
configurer.enable();
}
@Override
public void configureViewResolvers(final ViewResolverRegistry registry) {
registry.jsp("/WEB-INF/view/", ".jsp");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment