Skip to content

Instantly share code, notes, and snippets.

@CheolhoJeon
Created April 29, 2020 03:25
Show Gist options
  • Save CheolhoJeon/bf61b674be297aa1faa6aafb064d811d to your computer and use it in GitHub Desktop.
Save CheolhoJeon/bf61b674be297aa1faa6aafb064d811d to your computer and use it in GitHub Desktop.
@Configuration
@EnableWebMvcpublic
class MvcConfig implements WebMvcConfigurer {
...
@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