mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2025-04-03 11:51:51 +08:00
25 lines
957 B
Java
25 lines
957 B
Java
package org.ssssssss.magicboot.configuration;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
|
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
import org.springframework.web.util.UrlPathHelper;
|
|
import org.ssssssss.magicboot.model.Global;
|
|
|
|
@Configuration
|
|
public class WebConfiguration implements WebMvcConfigurer {
|
|
|
|
@Override
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
|
registry.addResourceHandler(Global.USER_FILES_BASE_URL + "**").addResourceLocations("file:" + Global.getDir() + Global.USER_FILES_BASE_URL);
|
|
}
|
|
|
|
// 兼容接口多个"/",比如//system/xxx
|
|
@Override
|
|
public void configurePathMatch(PathMatchConfigurer configurer) {
|
|
configurer.setUrlPathHelper(new UrlPathHelper());
|
|
}
|
|
|
|
}
|