Springboot 实现WebMvcConfigurer接口来拓展SpringMvc的功能

Posted guhongying

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot 实现WebMvcConfigurer接口来拓展SpringMvc的功能相关的知识,希望对你有一定的参考价值。

好像是Spring Boot 2.0.4.RELEASEWebMvcConfigurerAdapter已过时,所以想通过继承WebMvcConfigurerAdapter来拓展SpringMvc的功能时会有一条删除线。

因此,通过实现WebMvcConfigurer接口来拓展SpringMvc的功能()

package com.example.springboot.config;


import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;


@Configuration
public class MyMvcConfig implements WebMvcConfigurer {
    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
    ////浏览器发送 /nihao 请求来到 success registry.addViewController(
"/nihao").setViewName("success"); } }

 

以上是关于Springboot 实现WebMvcConfigurer接口来拓展SpringMvc的功能的主要内容,如果未能解决你的问题,请参考以下文章

springboot成神之——拦截器

java webMvcConfig.java

springBoot整合swagger常见问题一

SpringBoot零基础入门指南9--国际化

Springboot整合springfox3+knife4j,生成接口文档

webmvc与swagger页面冲突问题