All Downloads are FREE. Search and download functionalities are using the official Maven repository.

message.swagger.config.CosmosSwaggerWebConfigurerAdapter Maven / Gradle / Ivy

There is a newer version: 2.5.9
Show newest version
package message.swagger.config;

import org.springframework.stereotype.Component;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

/**
 * swagger资源路径.
 *
 * @author sunhao([email protected])
 * @version V1.0, 16/2/3 下午12:29
 */
@Component
public class CosmosSwaggerWebConfigurerAdapter extends WebMvcConfigurerAdapter {
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/swagger/**").addResourceLocations("classpath:/swagger/").setCachePeriod(31556926);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy