https://github.com/sarakhild/springboot-data-jpa-project
This project simplify SpringBoot with Spring Data JPA CUDR Concept.
https://github.com/sarakhild/springboot-data-jpa-project
java json mysql springboot springdatajpa
Last synced: 4 months ago
JSON representation
This project simplify SpringBoot with Spring Data JPA CUDR Concept.
- Host: GitHub
- URL: https://github.com/sarakhild/springboot-data-jpa-project
- Owner: SaraKhild
- Created: 2021-06-17T07:41:33.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-21T10:53:08.000Z (over 1 year ago)
- Last Synced: 2024-12-29T04:51:33.351Z (5 months ago)
- Topics: java, json, mysql, springboot, springdatajpa
- Language: Java
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SpringBoot with Spring Data JPA CUDR Concept.
## Overview
The project is about the employee's so it can display employees, add new employee, updates employee info and delete employee as JSON.
## Usages
- SpringBoot
- SpringJPA
- MySQL
## Architecture of the Project### 1- src folders
- Controllers folder
- Entities folder
- DAO folder
- Services folder### 2-Maven pom.xml
```
org.springframework.boot
spring-boot-starter-data-jpa
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-devtools
runtime
true
mysql
mysql-connector-java
runtime
org.springframework.boot
spring-boot-starter-test
test
```
### 3-Application.properties.yml
```
server.port=8081
spring.datasource.url = jdbc:mysql://localhost:3306/employee-directory?useSSL=false&serverTimezone=UTC
spring.datasource.username=springemployee
spring.datasource.password= springemployee```
## Let's Start :mechanical_arm:
### • Display Empoyees### • Add new Employee
### • Update Empoyee
### • Delete Employee
---
### Good Luck
![]()