spring-rest-api-starter
spring-rest-api-starter copied to clipboard
:coffee: A "simple" starter project custom RESTful API using Spring.
README
What is this repository
A 'simple' starter project custom RESTful API.
The project uses Spring Boot, a connection to a database and a connection to a mail server.
Prerequisites
The project should work with the following databases:
Edit the application.properties depending on the database system you need (see installation).
Installation
git clone https://github.com/monogramm/spring-rest-api-starter.gitcd spring-rest-api-starter
Finally, edit the properties in application.properties to your needs (name, db, mail, etc...) and compile the project.
mvn clean install
The application will automatically setup the database. See InitialDataLoader.java for details.
Run Backend API
mvn spring-boot:run
You can now access your API at http://localhost:8080/spring-rest-api-starter/api/
Tests
Unit Tests
mvn test
Integration Tests
mvn verify
Be careful as the IT will startup the server and test the actual functions. This means that all application properties must be valid for integration, even mail ones (not mocked).
The IT use there own application.properties which defaults to a in memory H2 database and in memory GreenMail mail server.
Release
mvn release:preparemvn release:perform
Documentation
It is possible to generate documentation using JavaDoc
mvn site
Also, the application uses Swagger to document the API.
When running the backend API, go to http://localhost:8080/spring-rest-api-starter/api/v2/api-docs
Docker
A Dockerfile and docker-compose template are available at the root of this project. After building the project, the docker image can be created:
mvn clean install
docker build --build-arg=target/*.jar -t "monogramm/docker-spring-rest-api-starter" "."
Tools
A helper script is available at the root of this project: tools.sh
It can be used for common operations
Contribution guidelines
See CONTRIBUTING file.
License
This product is distributed under the GNU Affero General Public License v3.0. See the complete license in the bundle: