Giter Site home page Giter Site logo

jacobjohansen / spring-boot-rest-api-seed Goto Github PK

View Code? Open in Web Editor NEW

This project forked from thoersch/spring-boot-rest-api-seed

0.0 2.0 0.0 72 KB

A seed and example project for a RESTful api using Springboot, Jersey, Hibernate and Jackson

Java 100.00%

spring-boot-rest-api-seed's Introduction

Description

This is a seed and example project for building a RESTful API using the following technologies:

  • Java 8
  • Spring Boot
  • Jersey
  • Hibernate
  • Jackson
  • Spring DI

Create the database user

CREATE ROLE "SpringBootUser" LOGIN
  ENCRYPTED PASSWORD 'md513445691374efba1aaee7b0912e63af3'
  SUPERUSER INHERIT CREATEDB NOCREATEROLE NOREPLICATION;

Create the database

CREATE DATABASE "SpringBootRestApi"
  WITH ENCODING='UTF8'
       OWNER="SpringBootUser"
       CONNECTION LIMIT=-1;

Build the project

mvn clean install

Run the migrations

mvn liquibase:update -P local

Running the API

Start the service by running the following command:

java -jar target/spring-boot-rest-api-seed-1.0-SNAPSHOT.jar

You can now test the service by consuming the api on port 8080. Some routes you can try in your browser (GET requests):

You can add new content by posting payloads like below:

POST 127.0.0.1:8080/users
Content-Type: application/json
{
  "firstName": "you",
  "lastName": "here",
  "emailAddress": "[email protected]",
  "profilePicture": "yourface.png"
}

License

Copyright © 2014 Tyler Hoersch

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

spring-boot-rest-api-seed's People

Contributors

thoersch avatar

Watchers

Jacob Johansen avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.