https://github.com/aashutoshrathi/springcrud
Basic CRUD with SpringBoot + Hibernate
https://github.com/aashutoshrathi/springcrud
crud hibernate java junit postgresql spring-boot springboot
Last synced: about 1 month ago
JSON representation
Basic CRUD with SpringBoot + Hibernate
- Host: GitHub
- URL: https://github.com/aashutoshrathi/springcrud
- Owner: aashutoshrathi
- Created: 2020-05-17T17:59:20.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-01T19:26:24.000Z (almost 5 years ago)
- Last Synced: 2025-03-17T04:04:47.310Z (about 1 month ago)
- Topics: crud, hibernate, java, junit, postgresql, spring-boot, springboot
- Language: Java
- Size: 88.9 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD with SpringBoot
Basic CRUD operations with help of SpringBoot + Hibernate with goodness of JPA Repository.## Features
- Use of complete MVC Architecture
- Uses CRUD Repository
- Custom Error Handler (`exception/CustomExceptionHandler.java`)
- Connection with PostgreSQL
- Validation of input fields using JavaX API.## How to run?
```shell script
mvn install
java -jar target/basicuser-0.0.1-SNAPSHOT.jar
```## Why?
I have worked for about a year with NestJS and TypeORM, I read somewhere that MVC pattern followed in that stack was inspired from SpringBoot + Hibernate.I gave it a try, and found out the similarities and they have same structure of files and even same decorators in most cases.