SpringBoot访问静态视图的两种方式

Posted lotus-wmm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot访问静态视图的两种方式相关的知识,希望对你有一定的参考价值。

## 1 通过Controller控制跳转

package com.syu.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class IndexController {

  /*  @RequestMapping({"/","index.html"})
    public String index(){
        return "index";
    }*/
}

 

 

## 2 通过 WebMvcConfigurer

package com.syu.config;

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

@Configuration
public class MyMvcConfig implements WebMvcConfigurer {

    @Override
    public void addViewControllers(ViewControllerRegistry registry){
        registry.addViewController("/").setViewName("index");
        registry.addViewController("/index.html").setViewName("index");
    }

}

 

以上是关于SpringBoot访问静态视图的两种方式的主要内容,如果未能解决你的问题,请参考以下文章

Nginx部署静态页面及引用图片有效访问的两种方式

springboot项目启动成功后执行一段代码的两种方式

springboot测试的两种方式

使用mybatis的两种方式

SpringBoot热部署的两种方式

Springboot以Tomcat为容器实现http重定向到https的两种方式