shounoop / spring-boot-for-beginners

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

My notes

1. Database and Spring Data JPA (Java Persistence API)

img

2. CRUD API

img

3. How to structure your Backend

img

4. How to create database (PostgreSQL with docker)

- In terminal, run following commands:
    1. docker exec -it postgres bash
        (postgres: name of running postgres container)
    2. psql -U amigoscode
        (amigoscode: database user name)
    3. CREATE DATABASE customer;
        (customer: database name)

About


Languages

Language:Java 100.0%