微信搜索superit|邀请体验:大数据, 数据管理、OLAP分析与可视化平台 | 赞助作者:赞助作者

springboot默认的控制器和欢迎页面设置

springboot aide_941 26℃

springboot默认的欢迎页面设置

1.新建MVCConfiguration类,代码如下:

  1. package com.example.demohebirnate.config;
  2. import org.springframework.context.annotation.Configuration;
    import org.springframework.core.Ordered;
  3. import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
  4. import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
  5. @Configuration
  6. public class MVCConfiguration extends WebMvcConfigurerAdapter {
  7. @Override
  8. public void addViewControllers(ViewControllerRegistry registry) {
  9. registry.addViewController(“/”).setViewName(“forward:/login.html”);
  10. registry.setOrder(Ordered.HIGHEST_PRECEDENCE);
  11. super.addViewControllers(registry);
  12. }
  13. }

2.新建login.html,目录为:resources/static   这里默认是static目录下,原因不详

3.访问地址:http://localhost:8080/,如图:

 

转载请注明:SuperIT » springboot默认的控制器和欢迎页面设置

喜欢 (1)or分享 (0)