管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-09-26 2b13d9f6ca7cc4748271cd21eb05c8f3f5eed341
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.lf.server.config;
 
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
 
/**
 * WebMVCConfig
 * @author www
 */
public class WebMVCConfig extends WebMvcConfigurerAdapter {
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("swagger-ui.html")
                .addResourceLocations("classpath:/META-INF/resources/");
        registry.addResourceHandler("/webjars/**")
                .addResourceLocations("classpath:/META-INF/resources/webjars/");
    }
}