|
@ -1,8 +1,7 @@
|
|
|
package com.yihu.hos.config;
|
|
|
|
|
|
import com.yihu.hos.interceptor.WebMvcInterceptor;
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
import org.springframework.web.filter.HiddenHttpMethodFilter;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
|
|
|
|
|
@ -12,17 +11,11 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter
|
|
|
* @vsrsion 1.0
|
|
|
* Created at 2016/12/26.
|
|
|
*/
|
|
|
//@Configurable
|
|
|
@Component
|
|
|
public class WebMvcConfig extends WebMvcConfigurerAdapter {
|
|
|
|
|
|
@Override
|
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
|
|
registry.addInterceptor(new WebMvcInterceptor());
|
|
|
}
|
|
|
|
|
|
@Bean
|
|
|
public HiddenHttpMethodFilter hiddenHttpMethodFilter() {
|
|
|
HiddenHttpMethodFilter hiddenHttpMethodFilter= new HiddenHttpMethodFilter();
|
|
|
return hiddenHttpMethodFilter;
|
|
|
}
|
|
|
}
|