• SpringBoot日记——实战篇——Url定向


    搞定了SpringBoot的一些基础核心的东西,我们需要实践一个项目来确认自己学习的东西能被应用,最初,我们会选择自己写一个登陆页面,这也是每个网站几乎都有的门面。

    在写之前,还有一些知识点需要记录——URL定向。

    比如我们访问“/”和访问“/index.html”这样的路径的时候,希望他们都可以指向同一个页面,但是我们又不能写一堆Controller来实现,那样以后维护起来也十分繁琐,所以这里引入了一个Adapter的方法。

    具体如何实现的呢,先来看代码,然后做讲解:

    /**
     * 由于SpringBoot2.0之前,我们使用的WebMvcConfigurerAdapter来进行url重定向,现在已经过期了,
     * 而之后我们有两种方法来实现上述的功能:
     * 1.继承 WebMvcConfigurationSupport方法(有两种写法)
     * 2.实现 WebMvcConfigurer接口(这里推荐用这种,相对便捷)
     *
     */// WebMvcConfigurationSupport 写法1
    @Configuration
    public class MyMvcConfig extends WebMvcConfigurationSupport {
        @Bean
        public WebMvcConfigurationSupport webMvcConfigurationSupport() {
            WebMvcConfigurationSupport support = new WebMvcConfigurationSupport() {
                @Override
                protected void addViewControllers(ViewControllerRegistry registry) {
                    registry.addViewController("/").setViewName("index");
                    registry.addViewController("/index.html").setViewName("index");
                }
    
                @Override
                public void addResourceHandlers(ResourceHandlerRegistry registry) {
                    registry.addResourceHandler("/static/**").addResourceLocations("classpath:/resources/static/");
                    super.addResourceHandlers(registry);
                }
            };
            return support;
        }

    --

    //WebMvcConfigurationSupport 写法2
    @Configuration
    public class myMvcConfig extends WebMvcConfigurationSupport {
    
        @Override
        protected void addViewControllers(ViewControllerRegistry registry) {
            registry.addViewController("/").setViewName("index");
            registry.addViewController("/index.html").setViewName("index");
        }
    }

    来看推荐的方法2,是直接实现接口实现的,看起来就知道简单多了:

    @Configuration
    public class MyMvcConfig implements WebMvcConfigurer {
        @Override
        public void addViewControllers(ViewControllerRegistry registry) {
            registry.addViewController("/").setViewName("index");
            registry.addViewController("/index.html").setViewName("index");
        }

    通过设置 addViewController 都可以讲访问的路径指定到 setViewName 的页面中,这些页面一般配置在templates的模板包下。

    自己可以实践一下看看。

  • 相关阅读:
    st-load视频性能测试
    gitlab-ci集成SonarQube代码质量检查
    退役记
    洛谷 P5195 【[USACO05DEC]Knights of Ni S】
    洛谷 P4742 【[Wind Festival]Running In The Sky】
    洛谷 SP13105 【MUTDNA
    洛谷 P3174 【[HAOI2009]毛毛虫】
    洛谷 P1542 【包裹快递】
    Python函数的返回值
    ubuntu18.04修改国内apt源
  • 原文地址:https://www.cnblogs.com/iceb/p/9220311.html
Copyright © 2020-2023  润新知