✔
12.1 实现页面跳转功能
页面跳转功能:访问localhost:8081/jiang会自动跳转到另一个页面。
首先,在config包下创建一个名为MyMvcConfig的配置类:
类上加入@Configuration注解,类实现WebMvcConfiger接口,实现里面的视图跳转方法addViewConrollers:
注意:在转发的地址中,不用加"/"也可以。文章来源:https://www.toymoban.com/news/detail-607760.html
package jiang.com.springbootstudy.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.View;
import org.springframework.web.servlet.ViewResolver;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import java.util.Locale;
@Configuration
public class MyMvcConfig implements WebMvcConfigurer {
// 视图跳转
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("jiang").setViewName("hello"); //访问localhost:8081/jiang后会跳转到hello.html这个页面
}
}
在访问http://localhost:8081/jiang后,会自动跳转到hello的页面。文章来源地址https://www.toymoban.com/news/detail-607760.html
到了这里,关于12 扩展Spring MVC的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!