| | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.boot.SpringBootConfiguration; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.format.FormatterRegistry; |
| | | import org.springframework.http.converter.HttpMessageConverter; |
| | | import org.springframework.validation.MessageCodesResolver; |
| | | import org.springframework.validation.Validator; |
| | | import org.springframework.web.method.support.HandlerMethodArgumentResolver; |
| | | import org.springframework.web.servlet.config.annotation.CorsRegistry; |
| | | import org.springframework.web.servlet.config.annotation.InterceptorRegistry; |
| | | import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; |
| | | import org.springframework.web.method.support.HandlerMethodReturnValueHandler; |
| | | import org.springframework.web.servlet.HandlerExceptionResolver; |
| | | import org.springframework.web.servlet.config.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.List; |
| | |
| | | resolvers.add(new UserAuthenticationArgumentResolver()); |
| | | } |
| | | |
| | | @Override |
| | | public void addReturnValueHandlers(List<HandlerMethodReturnValueHandler> list) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void configureMessageConverters(List<HttpMessageConverter<?>> list) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void extendMessageConverters(List<HttpMessageConverter<?>> list) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void configureHandlerExceptionResolvers(List<HandlerExceptionResolver> list) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void extendHandlerExceptionResolvers(List<HandlerExceptionResolver> list) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public Validator getValidator() { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public MessageCodesResolver getMessageCodesResolver() { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public void configurePathMatch(PathMatchConfigurer pathMatchConfigurer) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void configureContentNegotiation(ContentNegotiationConfigurer contentNegotiationConfigurer) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void configureAsyncSupport(AsyncSupportConfigurer asyncSupportConfigurer) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void configureDefaultServletHandling(DefaultServletHandlerConfigurer defaultServletHandlerConfigurer) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void addFormatters(FormatterRegistry formatterRegistry) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void addInterceptors(InterceptorRegistry interceptorRegistry) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void addResourceHandlers(ResourceHandlerRegistry resourceHandlerRegistry) { |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 设置cors跨域支持 |
| | | * |
| | |
| | | .allowCredentials(true).maxAge(3600); |
| | | } |
| | | |
| | | @Override |
| | | public void addViewControllers(ViewControllerRegistry viewControllerRegistry) { |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void configureViewResolvers(ViewResolverRegistry viewResolverRegistry) { |
| | | |
| | | } |
| | | |
| | | @Bean |
| | | public OSS ossClient() { |
| | | return new OSSClientBuilder().build(aliOssProperties.getEndPoint(), aliOssProperties.getAccessKeyId(), aliOssProperties.getAccessKeySecret()); |