Springboot 사용자 정의 mvc 구성 요소 어떻게 실현

맞 춤 형 기능 을 실현 하려 면 이 구성 요 소 를 쓰 고 spring boot 관리 에 맡 기 면 spring boot 가 자동 으로 설치 합 니 다.
다음은 spring 공식 문서 설명 입 니 다.

공식 문서 에서 알 수 있 듯 이 구성 요 소 를 사용자 정의 하려 면 다음 절 차 를 밟 아야 합 니 다.
4
  • 설정 클래스 를 쓰 고@Configuration 주 해 를 더 합 니 다
  • 웹 MvcConfigurer 인터페이스 구현@EnableWebMvc 주 해 를 추가 하지 않 습 니 다예제:사용자 정의 보기 해석 기
    
    package com.yl.config;
    
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.web.servlet.View;
    import org.springframework.web.servlet.ViewResolver;
    import org.springframework.web.servlet.config.annotation.ViewResolverRegistry;
    import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
    
    import java.util.Locale;
    
    /**
     * mvc   
     */
    @Configuration
    public class MyMvcConfig implements WebMvcConfigurer {
    
      /**
       *             bean  spring
       */
      @Bean
      public ViewResolver myViewResovler(){
        return new MyViewResolver();
      }
    
    
      /**
       *         ,         
       */
      public static class MyViewResolver implements ViewResolver{
    
        @Override
        public View resolveViewName(String viewName, Locale locale) throws Exception {
          return null;
        }
      }
    }
    이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

    좋은 웹페이지 즐겨찾기