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

小菜鸟学习spring boot --接管spring boot的web配置

时间:2017-05-08 00:31:13      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:ide   菜鸟   oid   figure   方法   apt   configure   rri   config   

  菜鸟新来,大神勿喷,些许醍醐,感激涕零。因为 我总是装幽默,是因为我想让自己快乐。

  • spring boot提供的spring mvc 不符合自己的需求,自己则可以编写一个控制类 加上 @EnableWebMvc注解 来自己控制mvc配置。
  • spring boot提供的spring mvc 既需要保留,又需要添加自己的配置的时候,可以自定义一个WebMvcConfigureAdapter,而不需要使用EnableWebMvc注解;  

  

1 @Configuration
2 public class WebConfig  extends WebMvcConfigurerAdapter{
3     @Override
4     public void addViewControllers(ViewControllerRegistry registry) {
5         registry.addViewController("/xx").setViewName("/xx");
6     }
7 }

这里的addViewControllers方法并不会覆盖 WebMvcAutoConfiguration 中的addViewControllers方法;也就是说我们可以同时使用。

小菜鸟学习spring boot --接管spring boot的web配置

标签:ide   菜鸟   oid   figure   方法   apt   configure   rri   config   

原文地址:http://www.cnblogs.com/xingzhuipingye/p/6822651.html

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