当前位置: 代码迷 >> 综合 >> SpringBoot2.0 WebMvcConfigurerAdapter方法过时(踩坑)使用WebMvcConfigurationSupport或者WebMvcConfigurer来代替...
  详细解决方案

SpringBoot2.0 WebMvcConfigurerAdapter方法过时(踩坑)使用WebMvcConfigurationSupport或者WebMvcConfigurer来代替...

热度:54   发布时间:2023-09-15 07:18:46.0

实现WebMvcConfigurer这个接口

@Configuration

public class myMvcConfig implements WebMvcConfigurer {

    @Override

    public void addViewControllers(ViewControllerRegistry registry) {

        registry.addViewController("/").setViewName("login");

        registry.addViewController("/main.html").setViewName("dashboard");

---------------------

作者:WilsonSong1024

来源:CSDN

原文:https://blog.csdn.net/WilsonSong1024/article/details/80176285

版权声明:本文为博主原创文章,转载请附上博文链接!

  相关解决方案