22 lines
696 B
Plaintext
22 lines
696 B
Plaintext
|
|
package com.securityControl.common.swagger.config;
|
||
|
|
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
||
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* swagger 资源映射路径
|
||
|
|
*
|
||
|
|
* @author czc
|
||
|
|
*/
|
||
|
|
@Configuration
|
||
|
|
public class SwaggerWebConfiguration implements WebMvcConfigurer
|
||
|
|
{
|
||
|
|
@Override
|
||
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry)
|
||
|
|
{
|
||
|
|
/** swagger-ui 地址 */
|
||
|
|
registry.addResourceHandler("/swagger-ui/**")
|
||
|
|
.addResourceLocations("classpath:/META-INF/resources/webjars/springfox-swagger-ui/");
|
||
|
|
}
|
||
|
|
}
|