springboot2 设置系统访问的默认首页
Posted yshyee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot2 设置系统访问的默认首页相关的知识,希望对你有一定的参考价值。
@Configuration public class WebMvcConfig implements WebMvcConfigurer @Override public void addViewControllers(ViewControllerRegistry registry) //设置系统访问的默认首页 registry.addViewController("/").setViewName("redirect:/app/login.html");
备注:
(1)redirect可以改变浏览器地址;
(2)forward则不会改变浏览器地址。
以上是关于springboot2 设置系统访问的默认首页的主要内容,如果未能解决你的问题,请参考以下文章