重定向的两种方法:

    1.在Controller中进行重定向

spring boot redirect springbootredirect重定向_重定向

return "redirect:/main.html";    进行重定向到main.html,main.html相当于中间介质

spring boot redirect springbootredirect重定向_html_02

通过请求main.html然后定向到到目标页面dashbord.html.

2.在config中进行配置重定向

@Configuration
public class MyMvcConfig  extends WebMvcConfigurationSupport {
@Override
protected void addViewControllers(ViewControllerRegistry registry) {
"/main.html").setViewName("dashboard");
      }}

 

其中通过请求main.html显示目标页面dashboard.html的内容