ViewResolver -Springboot中的视图解析器

Posted 萌萌手好冷

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ViewResolver -Springboot中的视图解析器相关的知识,希望对你有一定的参考价值。

项目结构如下(Idea)

 

 

代码

package com.syu.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.WebMvcConfigurer;

import java.util.Locale;

//若你想diy一些定制化的功能,只需要写这个组件,然后将它交给SpringBoot
//扩展SpringMVC  dispatchservlet
@Configuration
public class MyMvcConfig implements WebMvcConfigurer {

    //ViewResolver 实现了试图解析器的接口的类,我们就可以把它看作一个视图解析器
    @Bean
    public ViewResolver myViewResolver(){
        return new MyViewResolver();
    }

    public static class MyViewResolver implements ViewResolver{

        @Override
        public View resolveViewName(String s, Locale locale) throws Exception {
            return null;
        }
    }
}

 

以上是关于ViewResolver -Springboot中的视图解析器的主要内容,如果未能解决你的问题,请参考以下文章

Spring 源码解析之ViewResolver源码解析

xml Spring - configuracion ruteos y viewResolver

Circular view path xxx would dispatch back to the current handler URL,Check your ViewResolver setup(

Spring MVC各组件近距离接触--下--04

SpringMVC深入理解

SpringMVC总结