21 lines
651 B
Java
21 lines
651 B
Java
package io.dataease.config;
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
|
@Configuration
|
|
public class WebMvcConfig implements WebMvcConfigurer {
|
|
|
|
@Value("${geo.custom.rootpath:file:/opt/dataease/data/custom/}")
|
|
private String geoPath;
|
|
|
|
@Override
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
|
|
|
registry.addResourceHandler("/geo/**").addResourceLocations(geoPath);
|
|
}
|
|
}
|