Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caiocampos/poi-inc
POI-inc, protótipo de Software de gerência de Pontos de Interesse, usando Java, Spring e MongoDB
https://github.com/caiocampos/poi-inc
java mongodb spring spring-boot
Last synced: 2 months ago
JSON representation
POI-inc, protótipo de Software de gerência de Pontos de Interesse, usando Java, Spring e MongoDB
- Host: GitHub
- URL: https://github.com/caiocampos/poi-inc
- Owner: caiocampos
- License: mit
- Created: 2019-06-01T12:14:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-19T08:30:41.000Z (9 months ago)
- Last Synced: 2024-05-28T21:54:17.307Z (8 months ago)
- Topics: java, mongodb, spring, spring-boot
- Language: Java
- Homepage:
- Size: 119 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# POI-inc
[![DepShield Badge](https://depshield.sonatype.org/badges/caiocampos/POI-inc/depshield.svg)](https://depshield.github.io)
[![GuardRails Badge](https://badges.guardrails.io/caiocampos/POI-inc.svg)](https://www.guardrails.io/)
[![License](https://img.shields.io/github/license/caiocampos/POI-inc.svg)](LICENSE)Software de gerência de Pontos de Interesse
## Executando:
Para executar o projeto é necessário o Maven instalado e configurado, siga as instruções do site a seguir para configurar:
http://luizricardo.org/2014/06/instalando-configurando-e-usando-o-maven-para-gerenciar-suas-dependencias-e-seus-projetos-java/
Com o Maven configurado basta executar o seguinte comando na pasta do projeto:
- Linux
> SPRING_APPLICATION_JSON='{"mongoUser":"###","mongoUserP":"###"}' mvn -Dmaven.test.skip=true install spring-boot:run- Windows
> set SPRING_APPLICATION_JSON={"mongoUser":"###","mongoUserP":"###"}
> mvn -Dmaven.test.skip=true install spring-boot:run## Testando:
Para facilitar o teste, foi disponibilizado um arquivo de coleção do Postman para ser importado
https://github.com/caiocampos/POI-inc/blob/master/POI-inc.postman_collection.json
Para instalar o Postman e importar a coleção siga o tutoriai a seguir:
https://developer.ft.com/portal/docs-start-install-postman-and-import-request-collection
É possível fazer requisições diretamente por requisições HTTP
* ### Serviço de cadastrar Ponto de Interesse:
Méthodo: POST /
Endereço:
> {{ localhost || IP }}:{{ PORTA }}Tipo:
> Content-Type: application/jsonDados:
```
{
"name": "Lanchonete",
"x": 27,
"y": 12
}
```* Exemplo:
```
POST / HTTP/1.1
Host: localhost:8085
Content-Type: application/json
User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:67.0) Gecko/20100101 Firefox/67.0
Accept: */*
Cache-Control: no-cache
Host: localhost:8085
accept-encoding: gzip, deflate
content-length: 45
Connection: keep-alive
cache-control: no-cache{
"name": "Lanchonete",
"x": 27,
"y": 12
}
```* ### Serviço de listar todos os Pontos de Interesse:
Méthodo: GET /
Endereço:
> {{ localhost || IP }}:{{ PORTA }}* Exemplo:
```
GET / HTTP/1.1
Host: localhost:8085
Content-Type: application/json
User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:67.0) Gecko/20100101 Firefox/67.0
Accept: */*
Cache-Control: no-cache
Host: localhost:8085
accept-encoding: gzip, deflate
Connection: keep-alive
cache-control: no-cache
```* ### Serviço de listar todos os Pontos de Interesse:
Méthodo: GET /near
Endereço:
> {{ localhost || IP }}:{{ PORTA }}Tipo:
> Content-Type: application/jsonDados:
```
{
"x": 20,
"y": 10,
"distance": 10
}
```* Exemplo:
```
GET /near HTTP/1.1
Host: localhost:8085
Content-Type: application/json
User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:67.0) Gecko/20100101 Firefox/67.0
Accept: */*
Cache-Control: no-cache
Host: localhost:8085
accept-encoding: gzip, deflate
content-length: 39
Connection: keep-alive
cache-control: no-cache{
"x": 20,
"y": 10,
"distance": 10
}
```