Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcosrachid/basic-restful-api
Template for REST webservice with spring
https://github.com/marcosrachid/basic-restful-api
java java-8 java8 maven rest rest-api rest-webservice spring spring-boot
Last synced: about 1 month ago
JSON representation
Template for REST webservice with spring
- Host: GitHub
- URL: https://github.com/marcosrachid/basic-restful-api
- Owner: marcosrachid
- Created: 2015-12-03T03:31:49.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-05T05:56:38.000Z (about 9 years ago)
- Last Synced: 2023-03-09T06:16:01.785Z (almost 2 years ago)
- Topics: java, java-8, java8, maven, rest, rest-api, rest-webservice, spring, spring-boot
- Language: Java
- Size: 10.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# basic-restful-webservice
Template for REST webservice with spring## Tecnologies
* Java 8
* Spring Boot
* Maven 3
* Release plugin
* FindBugs plugin
* JUnit## Builds
To generate local builds with maven:
```bash
mvn clean install
```
To generate versioned builds for production and homologation enviroments:
```
mvn release:clean
mvn release:prepare
```## Deploys
After building project, get .war file and run on your current web server:
* Tomcat
```bash
./startup.sh
```