Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhrgns/weatherapispringboot
The Weather API allows users to search for the current weather report of a city by its name. Api consumes an open source api for data resource
https://github.com/zhrgns/weatherapispringboot
docker docker-compose grafana h2-database intellij-idea java lombok maven open-api prometheus restful-api spring-boot spring-cache springdata-jpa swagger-ui
Last synced: 26 days ago
JSON representation
The Weather API allows users to search for the current weather report of a city by its name. Api consumes an open source api for data resource
- Host: GitHub
- URL: https://github.com/zhrgns/weatherapispringboot
- Owner: zhrgns
- Created: 2023-04-12T12:05:04.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-04-16T09:45:57.000Z (over 1 year ago)
- Last Synced: 2024-10-12T05:09:41.567Z (26 days ago)
- Topics: docker, docker-compose, grafana, h2-database, intellij-idea, java, lombok, maven, open-api, prometheus, restful-api, spring-boot, spring-cache, springdata-jpa, swagger-ui
- Language: Java
- Homepage:
- Size: 182 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Weather Service Application
## General Info:
![Architecture](./weather-uml.png)
---
* The Weather API allows users to search for the current weather report of a city by its name. The request is made to `/weather/{city}` URL with `{city}` as the path variable.
* The city parameter is validated to ensure it is not blank or a decimal value.
If it is invalid, a `400 - Http Bad Request` response is returned.
* The API gets the current weather from either the database or consumes the WeatherStack API using an API key.
* If the latest data is not older than 30 minutes, it is retrieved from the database.
* If the data is older than 30 minutes or does not exist in the database, a request is made to the WeatherStack API, and the result is cached. If there is a cached value with the city filter as the key, the response is returned from the cache directly.
* If there is too many request for api in 10 sec, a `429 Too Many Request` response is returned.
* For usages, weather Stack Api_Key should be defined in the `application.yml` file or an `.env` file .* The API endpoint can be found on the Swagger page at` http://localhost:8080/swagger-ui/index.html`.
## Technology
---
- Java 17
- Spring Boot 3.0
- H2 In Memory Database
- Spring Data JPA
- Spring Cache
- Lombok
- Restful API
- Maven
- Docker, Docker Compose
- Prometheus, Grafana
- Open API Documentation
- IntelliJ IDEA## Prerequisites
----
- Maven or Docker## Docker Run
----
This application can be built and run using Docker.
The Dockerfile has a multistage build, so building and running can be done in one step.```sh
$ cd weatherapp
$ docker-compose up -d
```Docker compose creates 3 replicas (instances) of the application on port range 9595-9597
### For open-api-ui: `http://localhost:{9595-9597}/swagger-ui.html`
### For Prometheus: `http://localhost:9090`
### For Grafana: `http://localhost:3000`
USER, PASSWORD=admin## Maven Run
---
To build and run the app with `Maven`:```sh
$ cd weatherapp
$ mvn clean install
$ mvn spring-boot:run
```---