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访问静态视图的两种方式的主要内容,如果未能解决你的问题,请参考以下文章