fix: WebMvcConfig fix

dev
gitea-관리자 1 year ago
parent 5cf7b29486
commit 2c176a87d4

@ -42,10 +42,18 @@ import org.springframework.web.servlet.i18n.SessionLocaleResolver;
* <pre>
* description : Spring MVC
* - filter, interceptor
* - AuthentificationInterceptor :
* - CommonsRequestLoggingFilter : request logging
* - ReadableRequestWrapperFilter : post logging
* - CORS
* - {@link AuthentificationInterceptor} :
* - {@link CommonsRequestLoggingFilter} : request logging
* - {@link ReadableRequestWrapperFilter} : post logging
* - {@link LoggingFilter} : log
* - CORS
* {@code @EnabledWebMVC} - MVC
* -> {@code InternalResourceViewResolver}
* -> MVC
* {@code @EnableWebMVC} {@code @Configuration} + implements {@code WebMvcConfigurer}
* {@code WebMvcConfigurer} SpringBoot ({@code WebMvcAutoConfiguration})
*
*
* packageName : kr.xit.core.spring.config
* fileName : WebMvcConfig
* author : julim
@ -232,6 +240,11 @@ public class WebMvcConfig implements WebMvcConfigurer {
}
// -------------------------------------------------------------
// @Override
// public void configureViewResolvers(ViewResolverRegistry registry) {
// registry.jsp("/WEB-INF/jsp/",".jsp");
// }
//TODO :: ArgumentResolver add
@Override

Loading…
Cancel
Save