67 lines
1.8 KiB
Java
67 lines
1.8 KiB
Java
|
|
package com.boot.security.server.config;
|
||
|
|
|
||
|
|
import java.io.File;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import org.springframework.beans.factory.annotation.Value;
|
||
|
|
import org.springframework.context.annotation.Bean;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.util.ResourceUtils;
|
||
|
|
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
|
||
|
|
import org.springframework.web.servlet.config.annotation.CorsRegistry;
|
||
|
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
||
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
|
||
|
|
|
||
|
|
import com.boot.security.server.page.table.PageTableArgumentResolver;
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
public class WebMvcConfig extends WebMvcConfigurerAdapter {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 跨域支持
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Bean
|
||
|
|
public WebMvcConfigurer corsConfigurer() {
|
||
|
|
return new WebMvcConfigurerAdapter() {
|
||
|
|
@Override
|
||
|
|
public void addCorsMappings(CorsRegistry registry) {
|
||
|
|
registry.addMapping("/**").allowedMethods("*");
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* datatable分页解析
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Bean
|
||
|
|
public PageTableArgumentResolver tableHandlerMethodArgumentResolver() {
|
||
|
|
return new PageTableArgumentResolver();
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers) {
|
||
|
|
argumentResolvers.add(tableHandlerMethodArgumentResolver());
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 上传文件根路径
|
||
|
|
*/
|
||
|
|
@Value("${files.path}")
|
||
|
|
private String filesPath;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 外部文件访问
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
||
|
|
registry.addResourceHandler("/files/**")
|
||
|
|
.addResourceLocations(ResourceUtils.FILE_URL_PREFIX + filesPath + File.separator);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|