Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smithros/adq_task
Spring Boot Hiring Test
https://github.com/smithros/adq_task
Last synced: 13 days ago
JSON representation
Spring Boot Hiring Test
- Host: GitHub
- URL: https://github.com/smithros/adq_task
- Owner: smithros
- Created: 2022-02-03T21:26:51.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-03T21:29:50.000Z (almost 3 years ago)
- Last Synced: 2024-10-11T23:05:25.306Z (27 days ago)
- Language: Java
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Environment:
- Java version: 1.8
- Maven version: 3.*
- Spring Boot version: 2.2.1.RELEASE## Read-Only Files:
- src/test/*## Data:
Example of a weather data JSON object:
```
{
"id": 1,
"date": "1985-01-01",
"lat": 36.1189,
"lon": -86.6892,
"city": "Nashville",
"state": "Tennessee",
"temperatures": [17.3, 16.8, 16.4, 16.0, 15.6, 15.3, 15.0, 14.9, 15.8, 18.0, 20.2, 22.3, 23.8, 24.9, 25.5, 25.7, 24.9, 23.0, 21.7, 20.8, 29.9, 29.2, 28.6, 28.1]
}
```## Requirements:
The `REST` service must expose the `/weather` endpoint, which allows for managing the collection of weather records in the following way:POST request to `/weather`:
- creates a new weather data record
- expects a valid weather data object as its body payload, except that it does not have an id property; you can assume that the given object is always valid
- adds the given object to the collection and assigns a unique integer id to it
- the response code is 201 and the response body is the created record, including its unique idGET request to `/weather`:
- the response code is 200
- the response body is an array of matching records, ordered by their ids in increasing order
- accepts an optional query string parameter, date, in the format YYYY-MM-DD, for example /weather/?date=2019-06-11. When this parameter is present, only the records with the matching date are returned.
- accepts an optional query string parameter, city, and when this parameter is present, only the records with the matching city are returned. The value of this parameter is case insensitive, so "London" and "london" are equivalent. Moreover, it might contain several values, separated by commas (e.g. city=london,Moscow), meaning that records with the city matching any of these values must be returned.
- accepts an optional query string parameter, sort, that can take one of two values: either "date" or "-date". If the value is "date", then the ordering is by date in ascending order. If it is "-date", then the ordering is by date in descending order. If there are two records with the same date, the one with the smaller id must come first.GET request to `/weather/`:
- returns a record with the given id
- if the matching record exists, the response code is 200 and the response body is the matching object
- if there is no record in the collection with the given id, the response code is 404## Commands
- run:
```bash
mvn clean package; java -jar target/WeatherApi-1.0-SNAPSHOT.jar
```
- install:
```bash
mvn clean install
```
- test:
```bash
mvn clean test
```## ToDo
DockerFile
Swagger doc