https://github.com/sarakhild/springboot-thymeleaf-cudr-database-project
This project simplify SpringBoot Thymeleaf with CUDR Database Concept.
https://github.com/sarakhild/springboot-thymeleaf-cudr-database-project
java springboot springjpa sql thymeleaf
Last synced: 3 months ago
JSON representation
This project simplify SpringBoot Thymeleaf with CUDR Database Concept.
- Host: GitHub
- URL: https://github.com/sarakhild/springboot-thymeleaf-cudr-database-project
- Owner: SaraKhild
- Created: 2021-07-02T15:19:29.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-04T11:17:28.000Z (7 months ago)
- Last Synced: 2024-11-04T11:32:47.204Z (7 months ago)
- Topics: java, springboot, springjpa, sql, thymeleaf
- Language: HCL
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SpringBoot Thymeleaf with CUDR Database Concept.
## Overview
The project is about the employee's table so it can display employees, add new employee, updates employee info and delete employee.
## Usages
- SpringBoot
- SpringJPA
- Thymeleaf
- 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-thymeleaf
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
org.springframework.boot
spring-boot-starter-data-jpa
org.hibernate
hibernate-core
${hibernate.version}
```
### 3-Application.properties.yml
```
server.port=8082
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 Table
### • Add new Employee
![]()
### • Update Empoyee:
![]()
### • Delete Employee:
![]()
---
### Good Luck
![]()
# project-deploy