Skip to content

Beginner Edition - Getting Started with Spring Webflux in IntelliJ (Postgres Database) (Reactive programming)

License

Notifications You must be signed in to change notification settings

nikita9604/CRUD-Operations-using-Spring-Webflux-in-IntelliJ

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRUD Operations in Spring Webflux using Flux and Mono in IntelliJ

This consists of an Application to perform all CRUD operation in Spring WebFlux in IntelliJ with PostgreSQL database. (Reactive Programming).

Example 8

To perform all basic CRUD operations over a entity(table) in a database.

Postgres Implementation

Create a table name - Employee in Postgres SQL and add a few entries to check through while executing in the localhost.

Steps of Code Execution

  1. Clone this repository
  2. Unzip the downloaded folder
  3. Open this in any editor with Maven support (such as IntelliJ IDEA)
  4. Connect to the postgres database as mentioned in resources/application.properties
  5. Build the project and run the SpringExample8Application.java
  6. Open the localhost directly as a webpage or using Postman to perform varies CRUD operations.