新写一个测试类,代码如下:
/**
* @Project:
* @Author: liming
* @Date: 2018年06月11日
*/
package com.withmes.springbootdemoconfig02.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
/**
* ClassName: TestWebAdapt
* @Description:
* @author liming
* @date 2018年06月11日
*/
@Configuration
public class TestWebAdapt extends WebMvcConfigurerAdapter {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("index").setViewName("inde");
}
}
WebMvcConfigurerAdapter是一个抽象方法,此处使用了桥接模式,开发者不需要去实现所有的接口方法.
spirng-boot 官方开发文档:https://docs.spring.io/spring/docs/5.0.6.RELEASE/javadoc-api/