fix: WebMvcConfig fix

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

@ -42,10 +42,18 @@ import org.springframework.web.servlet.i18n.SessionLocaleResolver;
* <pre> * <pre>
* description : Spring MVC * description : Spring MVC
* - filter, interceptor * - filter, interceptor
* - AuthentificationInterceptor : * - {@link AuthentificationInterceptor} :
* - CommonsRequestLoggingFilter : request logging * - {@link CommonsRequestLoggingFilter} : request logging
* - ReadableRequestWrapperFilter : post logging * - {@link ReadableRequestWrapperFilter} : post logging
* - CORS * - {@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 * packageName : kr.xit.core.spring.config
* fileName : WebMvcConfig * fileName : WebMvcConfig
* author : julim * 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 //TODO :: ArgumentResolver add
@Override @Override

Loading…
Cancel
Save