An open API service indexing awesome lists of open source software.

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.

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


display-employee

### • Add new Employee


add-employee
add-employee

### • Update Empoyee:


update-employee
update-employee

### • Delete Employee:


delete-employee
delete-employee

---

### Good Luck
# project-deploy