You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
774 B
23 lines
774 B
package de.kreth.clubhelper.model.config;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import springfox.documentation.builders.PathSelectors;
|
|
import springfox.documentation.builders.RequestHandlerSelectors;
|
|
import springfox.documentation.spi.DocumentationType;
|
|
import springfox.documentation.spring.web.plugins.Docket;
|
|
|
|
@Configuration
|
|
public class SwaggerSpringfoxConfig
|
|
{
|
|
@Bean
|
|
public Docket api()
|
|
{
|
|
return new Docket(DocumentationType.SWAGGER_2)
|
|
.select()
|
|
.apis(RequestHandlerSelectors.any())
|
|
.paths(PathSelectors.any())
|
|
.build();
|
|
}
|
|
}
|
|
|