app.myoss.cloud.web.spring.boot.config.AbstractWebMvcConfigurer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of myoss-starter-webmvc Show documentation
Show all versions of myoss-starter-webmvc Show documentation
myoss open source project, myoss-starter written in Java
/*
* Copyright 2018-2018 https://github.com/myoss
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package app.myoss.cloud.web.spring.boot.config;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import com.alibaba.fastjson.support.config.FastJsonConfig;
import app.myoss.cloud.core.spring.boot.config.FastJsonAutoConfiguration;
import app.myoss.cloud.web.constants.WebConstants;
import app.myoss.cloud.web.spring.web.servlet.filter.LogWebRequestFilter;
import app.myoss.cloud.web.spring.web.servlet.filter.ReaderBodyHttpServletRequestFilter;
/**
* Spring Web MVC配置基类
*
* @author Jerry.Chen
* @since 2018年4月12日 下午5:18:07
*/
public abstract class AbstractWebMvcConfigurer implements WebMvcConfigurer {
@Autowired
private FastJsonConfig defaultFastJsonConfig;
/**
* 增加自定义的 HttpMessageConverter
*
* @see WebMvcConfigurationSupport#requestMappingHandlerAdapter
* @see WebMvcConfigurationSupport#getMessageConverters
* @see FastJsonWebConfig#fastJsonHttpMessageConverter(FastJsonConfig)
* @see FastJsonAutoConfiguration#fastJsonConfig()
*/
@Override
public void extendMessageConverters(List> converters) {
converters.add(3, FastJsonWebConfig.fastJsonHttpMessageConverter(defaultFastJsonConfig));
}
/**
* 注册 {@link ReaderBodyHttpServletRequestFilter} Filter
*
* @return 可以多次读取 {@link HttpServletRequest#getReader()} 和
* {@link HttpServletRequest#getInputStream()} 中的内容
*/
@ConditionalOnMissingBean(name = WebConstants.READER_BODY_HTTP_SERVLET_REQUEST_FILTER_BEAN_NAME)
@Bean(name = WebConstants.READER_BODY_HTTP_SERVLET_REQUEST_FILTER_BEAN_NAME)
public FilterRegistrationBean readerBodyHttpServletRequestFilter() {
FilterRegistrationBean registration = new FilterRegistrationBean<>();
registration.setFilter(new ReaderBodyHttpServletRequestFilter());
return registration;
}
/**
* 注册 {@link LogWebRequestFilter} Filter
*
* @return 记录web请求的日志信息过滤器
*/
@ConditionalOnMissingBean(name = WebConstants.WEB_REQUEST_LOG_FILTER_BEAN_NAME)
@Bean(name = WebConstants.WEB_REQUEST_LOG_FILTER_BEAN_NAME)
public FilterRegistrationBean webRequestLogFilter() {
FilterRegistrationBean registration = new FilterRegistrationBean<>();
registration.setFilter(new LogWebRequestFilter(true, true));
registration.setOrder(100);
return registration;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy