Giter Club home page Giter Club logo

spring-boot-crud-postgre-jpa's Introduction

Spring Boot 2 CURD With Database PostgreSQL and JPA

Read More Application

  • Spring Boot 2 With CURD, Postgres SQL, JPA, and Tools Lombok here
  • Spring Boot JWT here

Requirement Tools

  1. Maven 3.xx
  2. Java 8
  3. Spring Boot 2
  4. Postgres SQL
  5. Postman or similar tools

Running to Localhost

  1. Clone repository github.com
  2. Change connection to database in file application.properties
  3. Running application in command mvn spring-boot:run
  4. Ready to call API

Test Application via Postman

  1. POST posting
    curl --location 'http://localhost:8080/api/postings'
    --header 'Content-Type: application/json'
    --data '{ "tittle": "Second Posting", "description": "Second Description" }'
  2. GET all posting
    curl --location 'http://localhost:8080/api/postings'
  3. GET posting by id
    curl --location 'http://localhost:8080/api/postings/1'
  4. PUT posting by id
    curl --location --request PUT 'http://localhost:8080/api/postings/2'
    --header 'Content-Type: application/json'
    --data '{ "tittle": "Second Posting 2", "description": "Second Description 2", "published": true }'
  5. GET posting published curl --location 'http://localhost:8080/api/postings/published'
  6. DELETE posting by id
    curl --location --request DELETE 'http://localhost:8080/api/postings/2'
  7. DELETE all posting
    curl --location --request DELETE 'http://localhost:8080/api/postings'

Reference: https://www.bezkoder.com/spring-boot-postgresql-example/

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.