码迷,mamicode.com
首页 > 编程语言 > 详细

扩展springMVC

时间:2019-10-15 21:09:55      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:mvcc   end   fonts   control   编写   ring   pre   super   xtend   

编写一个配置类(@Configuration),是WebMvcConfigurerAdapter类型;不能标注@EnableWebMvc

既保留了所有的自动配置,也能用我们扩展的配置

@Configuration
public class Config extends WebMvcConfigurerAdapter {//WebMvcConfigurerAdapt
    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
//        super.addViewControllers(registry);
        //浏览器发送"/test" 请求来到success页面
        registry.addViewController("/test").setViewName("success");
    }
}

 

扩展springMVC

标签:mvcc   end   fonts   control   编写   ring   pre   super   xtend   

原文地址:https://www.cnblogs.com/gxlaqj/p/11680070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!