SpringBoot 2.0.0-Release版本3月1日已经发布了,做了不少改动,有基于SpringBoot2的变更说明,就更好了
2018-03-14
https://github.com/leechenxiang/imooc-springboot-starter
2018-03-13
/**
* spring boot 2.0.0.RELEASE
* spring mvc version 5
* WebMvcConfigurerAdapter is marked as deprecated
* Spring 5 you just need to implement the interface WebMvcConfigurer
*/
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
}
* spring boot 2.0.0.RELEASE
* spring mvc version 5
* WebMvcConfigurerAdapter is marked as deprecated
* Spring 5 you just need to implement the interface WebMvcConfigurer
*/
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
}
2018-03-13