-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #421 from vinho-notas/VIN-484-Adicionar-Swagger-na…
…-API-de-harmonizacao feat: VIN-484 - adicionando Swagger na API de harmonização
- Loading branch information
Showing
5 changed files
with
88 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Harmonização de Vinhos | ||
|
||
Este é um projeto Java Spring Boot que fornece uma API REST para harmonização de vinhos. A API permite que os usuários obtenham informações sobre vinhos, obtenham sugestões de harmonização de vinhos e obtenham sugestões de harmonização de vinhos com o menu. | ||
Para executar esse serviço é utilizado o Spring AI, que é uma biblioteca Java para interagir com a API OpenAI. | ||
|
||
## Tecnologias Utilizadas | ||
|
||
- Java | ||
- Spring Boot | ||
- Spring AI | ||
- Maven | ||
|
||
## Configuração | ||
|
||
Para configurar o projeto, você precisa ter o Java e o Maven instalados. Em seguida, você pode clonar o repositório e executar `mvn install` para instalar as dependências necessárias. | ||
|
||
## Uso | ||
|
||
Você pode iniciar o aplicativo executando `mvn spring-boot:run`. O serviço estará disponível em `http://localhost:8085/swagger-ui/index.html`. | ||
|
||
## Endpoints | ||
|
||
### Pairing: Operações relacionadas a harmonização de vinhos | ||
|
||
GET | ||
- `/api/v1/pairing/pairings`: Retorna a harmonização do vinho | ||
|
||
GET | ||
- `/api/v1/pairing/menu`: Retorna a harmonização do vinho com o menu | ||
|
||
GET | ||
- `/api/v1/pairing/information`: Retorna informações sobre o vinho | ||
|
||
## Licença | ||
|
||
Este projeto está licenciado sob a Licença MIT - veja o arquivo `LICENSE.md` para detalhes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...nizacao/src/main/java/com/vinhonotas/harmonizacao/configuration/SwaggerConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package com.vinhonotas.harmonizacao.configuration; | ||
|
||
import io.swagger.v3.oas.models.OpenAPI; | ||
import io.swagger.v3.oas.models.info.Contact; | ||
import io.swagger.v3.oas.models.info.Info; | ||
import io.swagger.v3.oas.models.info.License; | ||
import io.swagger.v3.oas.models.servers.Server; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
@Configuration | ||
public class SwaggerConfiguration { | ||
|
||
@Bean | ||
public OpenAPI openApiInformation() { | ||
Server localServer = new Server() | ||
.url("http://localhost:8085") | ||
.description("Localhost Server URL"); | ||
Contact contact = new Contact() | ||
.email("vanderlei.master@gmail.com") | ||
.name("Vanderlei Kleinschmidt"); | ||
Info info = new Info() | ||
.contact(contact) | ||
.description("Api de harmonização de vinhos") | ||
.title("Harmonização de Vinhos") | ||
.version("V0.0.1") | ||
.license(new License() | ||
.name("Apache 2.0") | ||
.url("http://springdoc.org")); | ||
return new OpenAPI() | ||
.info(info) | ||
.addServersItem(localServer); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters