前边我们使用controller来跳转success页面,我们也可以通过配置类来实现,如下:
我们新建一个config里边有一个MyConfig类
里边代码如下
package com.zhanshen.springbootweb.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class MyConfig implements WebMvcConfigurer { public void addViewControllers (ViewControllerRegistry registry) { registry.addViewController("/zhanshen").setViewName("success"); } }
@configuration注明这是一个配置类,
WebMvcConfigurer可以用来扩展springMVC的功能
里边我们添加试图映射,addViewControllers
registry里边的urlPath表示输入路径,而 setViewName就是你要跳转到的页面