Neste repositório, replicaremos o jogo Pedra, Papel e Tesoura (Jo-ken-Po), utilizando a linguagem de programação Java de forma interativa através do console.
public class SwaggerConfig {
@Bean
public Docket getBean() {
return new Docket(DocumentationType.SWAGGER_2).select()
.paths(PathSelectors.regex("/ifood-devweek/.*"))
.build()
.apiInfo(getInfo());
}
private ApiInfo getInfo() {
return new ApiInfoBuilder()
.title("Sacola API")
.description("Sacola API para Servir uma Aplicação de Delivery")
.build();
}
}
CAMILA QUASE TODO O MEU CÓDIGO DEU CERTO MAS , POR CAUSA DESSE TRECHO DE CÓDIGO NÃO DEU CERTO ,POR CAUSA DESSE DOCKET .
package me.dio.sacola.Configuration;
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.ApiInfoBuilder; import springfox.documentation.builders.PathSelectors; import springfox.documentation.service.ApiInfo; import springfox.documentation.spi.DocumentationType; import springfox.documentation.spring.web.plugins.Docket;
@Configuration
public class SwaggerConfig { @Bean public Docket getBean() { return new Docket(DocumentationType.SWAGGER_2).select() .paths(PathSelectors.regex("/ifood-devweek/.*")) .build() .apiInfo(getInfo()); } private ApiInfo getInfo() { return new ApiInfoBuilder() .title("Sacola API") .description("Sacola API para Servir uma Aplicação de Delivery") .build(); } } CAMILA QUASE TODO O MEU CÓDIGO DEU CERTO MAS , POR CAUSA DESSE TRECHO DE CÓDIGO NÃO DEU CERTO ,POR CAUSA DESSE DOCKET .