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: 11 months 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-05T05:56:38.000Z (over 10 years ago)
- Last Synced: 2025-02-18T20:49:48.438Z (about 1 year ago)
- Topics: java, java-8, java8, maven, rest, rest-api, rest-webservice, spring, spring-boot
- Language: Java
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- 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
```