From bfec3e7b6e4dcfec5623b3fcb6c90cd61bbe6820 Mon Sep 17 00:00:00 2001 From: darbyluv2code Date: Fri, 19 Dec 2025 20:14:06 -0500 Subject: [PATCH 1/4] Upgrade Spring Boot to 4.0.1 and Java to 25 --- 01-hellodemo/pom.xml | 4 ++-- 02-spring-boot-3-spring-mvc-crud-local/pom.xml | 8 ++++---- .../pom.xml | 8 ++++---- .../pom.xml | 8 ++++---- .../pom.xml | 10 +++++----- .../pom.xml | 10 +++++----- 6 files changed, 24 insertions(+), 24 deletions(-) diff --git a/01-hellodemo/pom.xml b/01-hellodemo/pom.xml index 07d0486..df2cbb5 100644 --- a/01-hellodemo/pom.xml +++ b/01-hellodemo/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.9 + 4.0.1 com.luv2code @@ -14,7 +14,7 @@ hellodemo Demo project for Spring Boot - 17 + 25 diff --git a/02-spring-boot-3-spring-mvc-crud-local/pom.xml b/02-spring-boot-3-spring-mvc-crud-local/pom.xml index 22ab1bc..4c6afa8 100644 --- a/02-spring-boot-3-spring-mvc-crud-local/pom.xml +++ b/02-spring-boot-3-spring-mvc-crud-local/pom.xml @@ -6,16 +6,16 @@ org.springframework.boot spring-boot-starter-parent - 3.5.9 + 4.0.1 - + com.luv2code.springboot employee-crud-demo 1.0.0 - + - 17 + 25 diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml b/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml index 22ab1bc..4c6afa8 100644 --- a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml +++ b/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml @@ -6,16 +6,16 @@ org.springframework.boot spring-boot-starter-parent - 3.5.9 + 4.0.1 - + com.luv2code.springboot employee-crud-demo 1.0.0 - + - 17 + 25 diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml b/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml index 22ab1bc..4c6afa8 100644 --- a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml +++ b/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml @@ -6,16 +6,16 @@ org.springframework.boot spring-boot-starter-parent - 3.5.9 + 4.0.1 - + com.luv2code.springboot employee-crud-demo 1.0.0 - + - 17 + 25 diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml b/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml index 75446b0..9404c6c 100644 --- a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml +++ b/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml @@ -6,16 +6,16 @@ org.springframework.boot spring-boot-starter-parent - 3.5.9 + 4.0.1 - + com.luv2code.springboot employee-crud-demo 1.0.0 - + - 17 + 25 @@ -23,7 +23,7 @@ io.awspring.cloud spring-cloud-aws-dependencies - 3.1.0 + 4.0.0-M1 pom import diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml b/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml index 75446b0..9404c6c 100644 --- a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml +++ b/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml @@ -6,16 +6,16 @@ org.springframework.boot spring-boot-starter-parent - 3.5.9 + 4.0.1 - + com.luv2code.springboot employee-crud-demo 1.0.0 - + - 17 + 25 @@ -23,7 +23,7 @@ io.awspring.cloud spring-cloud-aws-dependencies - 3.1.0 + 4.0.0-M1 pom import From 52b8fe76d1174cbe84e2fdfcc136a2ae2a95f473 Mon Sep 17 00:00:00 2001 From: darbyluv2code Date: Sun, 21 Dec 2025 02:44:48 -0500 Subject: [PATCH 2/4] Migrate: Update spring-boot-starter-web to spring-boot-starter-webmvc Update all 6 projects to use spring-boot-starter-webmvc for Spring Boot 4. This replaces the deprecated spring-boot-starter-web as part of Spring Boot 4's modularization effort. - No code changes required - All tests pass without modification - Spring MVC APIs remain identical --- 01-hellodemo/pom.xml | 2 +- 02-spring-boot-3-spring-mvc-crud-local/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/01-hellodemo/pom.xml b/01-hellodemo/pom.xml index df2cbb5..edaba53 100644 --- a/01-hellodemo/pom.xml +++ b/01-hellodemo/pom.xml @@ -23,7 +23,7 @@ org.springframework.boot - spring-boot-starter-web + spring-boot-starter-webmvc diff --git a/02-spring-boot-3-spring-mvc-crud-local/pom.xml b/02-spring-boot-3-spring-mvc-crud-local/pom.xml index 4c6afa8..43b6fde 100644 --- a/02-spring-boot-3-spring-mvc-crud-local/pom.xml +++ b/02-spring-boot-3-spring-mvc-crud-local/pom.xml @@ -36,7 +36,7 @@ org.springframework.boot - spring-boot-starter-web + spring-boot-starter-webmvc diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml b/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml index 4c6afa8..43b6fde 100644 --- a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml +++ b/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml @@ -36,7 +36,7 @@ org.springframework.boot - spring-boot-starter-web + spring-boot-starter-webmvc diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml b/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml index 4c6afa8..43b6fde 100644 --- a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml +++ b/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml @@ -36,7 +36,7 @@ org.springframework.boot - spring-boot-starter-web + spring-boot-starter-webmvc diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml b/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml index 9404c6c..1610538 100644 --- a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml +++ b/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml @@ -54,7 +54,7 @@ org.springframework.boot - spring-boot-starter-web + spring-boot-starter-webmvc diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml b/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml index 9404c6c..1610538 100644 --- a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml +++ b/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml @@ -54,7 +54,7 @@ org.springframework.boot - spring-boot-starter-web + spring-boot-starter-webmvc From d253aaf99ae77b0af14ab70180d808b07eb43451 Mon Sep 17 00:00:00 2001 From: darbyluv2code Date: Sun, 21 Dec 2025 02:59:11 -0500 Subject: [PATCH 3/4] Replace spring-boot-starter-test with spring-boot-starter-webmvc-test for Spring Boot 4 modularization --- 01-hellodemo/pom.xml | 2 +- 02-spring-boot-3-spring-mvc-crud-local/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/01-hellodemo/pom.xml b/01-hellodemo/pom.xml index edaba53..1bd6015 100644 --- a/01-hellodemo/pom.xml +++ b/01-hellodemo/pom.xml @@ -28,7 +28,7 @@ org.springframework.boot - spring-boot-starter-test + spring-boot-starter-webmvc-test test diff --git a/02-spring-boot-3-spring-mvc-crud-local/pom.xml b/02-spring-boot-3-spring-mvc-crud-local/pom.xml index 43b6fde..b49d12a 100644 --- a/02-spring-boot-3-spring-mvc-crud-local/pom.xml +++ b/02-spring-boot-3-spring-mvc-crud-local/pom.xml @@ -48,7 +48,7 @@ org.springframework.boot - spring-boot-starter-test + spring-boot-starter-webmvc-test test diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml b/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml index 43b6fde..b49d12a 100644 --- a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml +++ b/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml @@ -48,7 +48,7 @@ org.springframework.boot - spring-boot-starter-test + spring-boot-starter-webmvc-test test diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml b/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml index 43b6fde..b49d12a 100644 --- a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml +++ b/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml @@ -48,7 +48,7 @@ org.springframework.boot - spring-boot-starter-test + spring-boot-starter-webmvc-test test diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml b/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml index 1610538..d0a6bd1 100644 --- a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml +++ b/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml @@ -66,7 +66,7 @@ org.springframework.boot - spring-boot-starter-test + spring-boot-starter-webmvc-test test diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml b/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml index 1610538..d0a6bd1 100644 --- a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml +++ b/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml @@ -66,7 +66,7 @@ org.springframework.boot - spring-boot-starter-test + spring-boot-starter-webmvc-test test From f5ea13e4c13a7e555149a4dc0bb507c961ba110f Mon Sep 17 00:00:00 2001 From: darbyluv2code Date: Sun, 21 Dec 2025 03:32:30 -0500 Subject: [PATCH 4/4] Remove Spring Boot version numbers from directory names --- .../HELP.md | 0 .../mvnw | 0 .../mvnw.cmd | 0 .../pom.xml | 0 .../sql-scripts/01-create-user.sql | 0 .../sql-scripts/02-employee-directory.sql | 0 .../springboot/thymeleafdemo/ThymeleafdemoApplication.java | 0 .../springboot/thymeleafdemo/controller/DemoController.java | 0 .../springboot/thymeleafdemo/controller/EmployeeController.java | 0 .../luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java | 0 .../com/luv2code/springboot/thymeleafdemo/entity/Employee.java | 0 .../springboot/thymeleafdemo/service/EmployeeService.java | 0 .../springboot/thymeleafdemo/service/EmployeeServiceImpl.java | 0 .../src/main/resources/application.properties | 0 .../src/main/resources/static/index.html | 0 .../src/main/resources/templates/employees/employee-form.html | 0 .../src/main/resources/templates/employees/list-employees.html | 0 .../src/main/resources/templates/helloworld.html | 0 .../springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java | 0 .../HELP.md | 0 .../mvnw | 0 .../mvnw.cmd | 0 .../pom.xml | 0 .../sql-scripts/01-create-user.sql | 0 .../sql-scripts/02-employee-directory.sql | 0 .../springboot/thymeleafdemo/ThymeleafdemoApplication.java | 0 .../springboot/thymeleafdemo/controller/DemoController.java | 0 .../springboot/thymeleafdemo/controller/EmployeeController.java | 0 .../luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java | 0 .../com/luv2code/springboot/thymeleafdemo/entity/Employee.java | 0 .../springboot/thymeleafdemo/service/EmployeeService.java | 0 .../springboot/thymeleafdemo/service/EmployeeServiceImpl.java | 0 .../src/main/resources/application-prod.properties | 0 .../src/main/resources/application.properties | 0 .../src/main/resources/static/index.html | 0 .../src/main/resources/templates/employees/employee-form.html | 0 .../src/main/resources/templates/employees/list-employees.html | 0 .../src/main/resources/templates/helloworld.html | 0 .../springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java | 0 .../HELP.md | 0 .../mvnw | 0 .../mvnw.cmd | 0 .../pom.xml | 0 .../sql-scripts/01-create-user.sql | 0 .../sql-scripts/02-employee-directory.sql | 0 .../springboot/thymeleafdemo/ThymeleafdemoApplication.java | 0 .../springboot/thymeleafdemo/controller/DemoController.java | 0 .../springboot/thymeleafdemo/controller/EmployeeController.java | 0 .../luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java | 0 .../com/luv2code/springboot/thymeleafdemo/entity/Employee.java | 0 .../springboot/thymeleafdemo/service/EmployeeService.java | 0 .../springboot/thymeleafdemo/service/EmployeeServiceImpl.java | 0 .../src/main/resources/application.properties | 0 .../src/main/resources/static/index.html | 0 .../src/main/resources/templates/employees/employee-form.html | 0 .../src/main/resources/templates/employees/list-employees.html | 0 .../src/main/resources/templates/helloworld.html | 0 .../springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java | 0 .../HELP.md | 0 .../mvnw | 0 .../mvnw.cmd | 0 .../pom.xml | 0 .../sql-scripts/01-create-user.sql | 0 .../sql-scripts/02-employee-directory.sql | 0 .../springboot/thymeleafdemo/ThymeleafdemoApplication.java | 0 .../springboot/thymeleafdemo/controller/DemoController.java | 0 .../springboot/thymeleafdemo/controller/EmployeeController.java | 0 .../luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java | 0 .../com/luv2code/springboot/thymeleafdemo/entity/Employee.java | 0 .../springboot/thymeleafdemo/service/EmployeeService.java | 0 .../springboot/thymeleafdemo/service/EmployeeServiceImpl.java | 0 .../src/main/resources/application-prod.properties | 0 .../src/main/resources/application.properties | 0 .../src/main/resources/static/index.html | 0 .../src/main/resources/templates/employees/employee-form.html | 0 .../src/main/resources/templates/employees/list-employees.html | 0 .../src/main/resources/templates/helloworld.html | 0 .../springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java | 0 .../HELP.md | 0 .../README.md | 0 .../mvnw | 0 .../mvnw.cmd | 0 .../pom.xml | 0 .../sql-scripts/01-create-user.sql | 0 .../sql-scripts/02-employee-directory.sql | 0 .../springboot/thymeleafdemo/ThymeleafdemoApplication.java | 0 .../com/luv2code/springboot/thymeleafdemo/config/DemoConfig.java | 0 .../springboot/thymeleafdemo/controller/EmployeeController.java | 0 .../luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java | 0 .../com/luv2code/springboot/thymeleafdemo/dao/RefreshDAO.java | 0 .../com/luv2code/springboot/thymeleafdemo/dao/RefreshDAOImpl.java | 0 .../com/luv2code/springboot/thymeleafdemo/entity/Employee.java | 0 .../springboot/thymeleafdemo/service/EmployeeService.java | 0 .../springboot/thymeleafdemo/service/EmployeeServiceImpl.java | 0 .../luv2code/springboot/thymeleafdemo/service/RefreshService.java | 0 .../src/main/resources/application-prod.properties | 0 .../src/main/resources/application.properties | 0 .../src/main/resources/static/css/styles.css | 0 .../src/main/resources/static/index.html | 0 .../src/main/resources/templates/employees/employee-form.html | 0 .../src/main/resources/templates/employees/list-employees.html | 0 .../springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java | 0 102 files changed, 0 insertions(+), 0 deletions(-) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/HELP.md (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/mvnw (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/mvnw.cmd (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/pom.xml (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/sql-scripts/01-create-user.sql (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/sql-scripts/02-employee-directory.sql (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/resources/application.properties (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/resources/static/index.html (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/resources/templates/employees/employee-form.html (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/resources/templates/employees/list-employees.html (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/main/resources/templates/helloworld.html (100%) rename {02-spring-boot-3-spring-mvc-crud-local => 02-spring-boot-spring-mvc-crud-local}/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/HELP.md (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/mvnw (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/mvnw.cmd (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/pom.xml (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/sql-scripts/01-create-user.sql (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/sql-scripts/02-employee-directory.sql (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/resources/application-prod.properties (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/resources/application.properties (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/resources/static/index.html (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/resources/templates/employees/employee-form.html (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/resources/templates/employees/list-employees.html (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/main/resources/templates/helloworld.html (100%) rename {03-spring-boot-3-spring-mvc-crud-aws-application-profiles => 03-spring-boot-spring-mvc-crud-aws-application-profiles}/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/HELP.md (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/mvnw (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/mvnw.cmd (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/pom.xml (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/sql-scripts/01-create-user.sql (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/sql-scripts/02-employee-directory.sql (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/resources/application.properties (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/resources/static/index.html (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/resources/templates/employees/employee-form.html (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/resources/templates/employees/list-employees.html (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/main/resources/templates/helloworld.html (100%) rename {04-spring-boot-3-spring-mvc-crud-aws-environment-variables => 04-spring-boot-spring-mvc-crud-aws-environment-variables}/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/HELP.md (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/mvnw (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/mvnw.cmd (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/pom.xml (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/sql-scripts/01-create-user.sql (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/sql-scripts/02-employee-directory.sql (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/resources/application-prod.properties (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/resources/application.properties (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/resources/static/index.html (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/resources/templates/employees/employee-form.html (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/resources/templates/employees/list-employees.html (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/main/resources/templates/helloworld.html (100%) rename {05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted => 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted}/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/HELP.md (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/README.md (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/mvnw (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/mvnw.cmd (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/pom.xml (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/sql-scripts/01-create-user.sql (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/sql-scripts/02-employee-directory.sql (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/java/com/luv2code/springboot/thymeleafdemo/config/DemoConfig.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/RefreshDAO.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/RefreshDAOImpl.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/java/com/luv2code/springboot/thymeleafdemo/service/RefreshService.java (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/resources/application-prod.properties (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/resources/application.properties (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/resources/static/css/styles.css (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/resources/static/index.html (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/resources/templates/employees/employee-form.html (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/main/resources/templates/employees/list-employees.html (100%) rename {06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher => 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher}/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java (100%) diff --git a/02-spring-boot-3-spring-mvc-crud-local/HELP.md b/02-spring-boot-spring-mvc-crud-local/HELP.md similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/HELP.md rename to 02-spring-boot-spring-mvc-crud-local/HELP.md diff --git a/02-spring-boot-3-spring-mvc-crud-local/mvnw b/02-spring-boot-spring-mvc-crud-local/mvnw similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/mvnw rename to 02-spring-boot-spring-mvc-crud-local/mvnw diff --git a/02-spring-boot-3-spring-mvc-crud-local/mvnw.cmd b/02-spring-boot-spring-mvc-crud-local/mvnw.cmd similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/mvnw.cmd rename to 02-spring-boot-spring-mvc-crud-local/mvnw.cmd diff --git a/02-spring-boot-3-spring-mvc-crud-local/pom.xml b/02-spring-boot-spring-mvc-crud-local/pom.xml similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/pom.xml rename to 02-spring-boot-spring-mvc-crud-local/pom.xml diff --git a/02-spring-boot-3-spring-mvc-crud-local/sql-scripts/01-create-user.sql b/02-spring-boot-spring-mvc-crud-local/sql-scripts/01-create-user.sql similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/sql-scripts/01-create-user.sql rename to 02-spring-boot-spring-mvc-crud-local/sql-scripts/01-create-user.sql diff --git a/02-spring-boot-3-spring-mvc-crud-local/sql-scripts/02-employee-directory.sql b/02-spring-boot-spring-mvc-crud-local/sql-scripts/02-employee-directory.sql similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/sql-scripts/02-employee-directory.sql rename to 02-spring-boot-spring-mvc-crud-local/sql-scripts/02-employee-directory.sql diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java b/02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java rename to 02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java b/02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java rename to 02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java b/02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java rename to 02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java b/02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java rename to 02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java b/02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java rename to 02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java b/02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java rename to 02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java b/02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java rename to 02-spring-boot-spring-mvc-crud-local/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/resources/application.properties b/02-spring-boot-spring-mvc-crud-local/src/main/resources/application.properties similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/resources/application.properties rename to 02-spring-boot-spring-mvc-crud-local/src/main/resources/application.properties diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/resources/static/index.html b/02-spring-boot-spring-mvc-crud-local/src/main/resources/static/index.html similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/resources/static/index.html rename to 02-spring-boot-spring-mvc-crud-local/src/main/resources/static/index.html diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/resources/templates/employees/employee-form.html b/02-spring-boot-spring-mvc-crud-local/src/main/resources/templates/employees/employee-form.html similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/resources/templates/employees/employee-form.html rename to 02-spring-boot-spring-mvc-crud-local/src/main/resources/templates/employees/employee-form.html diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/resources/templates/employees/list-employees.html b/02-spring-boot-spring-mvc-crud-local/src/main/resources/templates/employees/list-employees.html similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/resources/templates/employees/list-employees.html rename to 02-spring-boot-spring-mvc-crud-local/src/main/resources/templates/employees/list-employees.html diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/main/resources/templates/helloworld.html b/02-spring-boot-spring-mvc-crud-local/src/main/resources/templates/helloworld.html similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/main/resources/templates/helloworld.html rename to 02-spring-boot-spring-mvc-crud-local/src/main/resources/templates/helloworld.html diff --git a/02-spring-boot-3-spring-mvc-crud-local/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java b/02-spring-boot-spring-mvc-crud-local/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java similarity index 100% rename from 02-spring-boot-3-spring-mvc-crud-local/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java rename to 02-spring-boot-spring-mvc-crud-local/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/HELP.md b/03-spring-boot-spring-mvc-crud-aws-application-profiles/HELP.md similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/HELP.md rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/HELP.md diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/mvnw b/03-spring-boot-spring-mvc-crud-aws-application-profiles/mvnw similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/mvnw rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/mvnw diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/mvnw.cmd b/03-spring-boot-spring-mvc-crud-aws-application-profiles/mvnw.cmd similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/mvnw.cmd rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/mvnw.cmd diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml b/03-spring-boot-spring-mvc-crud-aws-application-profiles/pom.xml similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/pom.xml rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/pom.xml diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/sql-scripts/01-create-user.sql b/03-spring-boot-spring-mvc-crud-aws-application-profiles/sql-scripts/01-create-user.sql similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/sql-scripts/01-create-user.sql rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/sql-scripts/01-create-user.sql diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/sql-scripts/02-employee-directory.sql b/03-spring-boot-spring-mvc-crud-aws-application-profiles/sql-scripts/02-employee-directory.sql similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/sql-scripts/02-employee-directory.sql rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/sql-scripts/02-employee-directory.sql diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/application-prod.properties b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/application-prod.properties similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/application-prod.properties rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/application-prod.properties diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/application.properties b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/application.properties similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/application.properties rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/application.properties diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/static/index.html b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/static/index.html similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/static/index.html rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/static/index.html diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/employees/employee-form.html b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/employees/employee-form.html similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/employees/employee-form.html rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/employees/employee-form.html diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/employees/list-employees.html b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/employees/list-employees.html similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/employees/list-employees.html rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/employees/list-employees.html diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/helloworld.html b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/helloworld.html similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/helloworld.html rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/main/resources/templates/helloworld.html diff --git a/03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java b/03-spring-boot-spring-mvc-crud-aws-application-profiles/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java similarity index 100% rename from 03-spring-boot-3-spring-mvc-crud-aws-application-profiles/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java rename to 03-spring-boot-spring-mvc-crud-aws-application-profiles/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/HELP.md b/04-spring-boot-spring-mvc-crud-aws-environment-variables/HELP.md similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/HELP.md rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/HELP.md diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/mvnw b/04-spring-boot-spring-mvc-crud-aws-environment-variables/mvnw similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/mvnw rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/mvnw diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/mvnw.cmd b/04-spring-boot-spring-mvc-crud-aws-environment-variables/mvnw.cmd similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/mvnw.cmd rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/mvnw.cmd diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml b/04-spring-boot-spring-mvc-crud-aws-environment-variables/pom.xml similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/pom.xml rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/pom.xml diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/sql-scripts/01-create-user.sql b/04-spring-boot-spring-mvc-crud-aws-environment-variables/sql-scripts/01-create-user.sql similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/sql-scripts/01-create-user.sql rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/sql-scripts/01-create-user.sql diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/sql-scripts/02-employee-directory.sql b/04-spring-boot-spring-mvc-crud-aws-environment-variables/sql-scripts/02-employee-directory.sql similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/sql-scripts/02-employee-directory.sql rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/sql-scripts/02-employee-directory.sql diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/resources/application.properties b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/resources/application.properties similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/resources/application.properties rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/resources/application.properties diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/resources/static/index.html b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/resources/static/index.html similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/resources/static/index.html rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/resources/static/index.html diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/employees/employee-form.html b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/employees/employee-form.html similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/employees/employee-form.html rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/employees/employee-form.html diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/employees/list-employees.html b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/employees/list-employees.html similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/employees/list-employees.html rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/employees/list-employees.html diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/helloworld.html b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/helloworld.html similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/helloworld.html rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/main/resources/templates/helloworld.html diff --git a/04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java b/04-spring-boot-spring-mvc-crud-aws-environment-variables/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java similarity index 100% rename from 04-spring-boot-3-spring-mvc-crud-aws-environment-variables/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java rename to 04-spring-boot-spring-mvc-crud-aws-environment-variables/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/HELP.md b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/HELP.md similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/HELP.md rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/HELP.md diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/mvnw b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/mvnw similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/mvnw rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/mvnw diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/mvnw.cmd b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/mvnw.cmd similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/mvnw.cmd rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/mvnw.cmd diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/pom.xml diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/sql-scripts/01-create-user.sql b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/sql-scripts/01-create-user.sql similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/sql-scripts/01-create-user.sql rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/sql-scripts/01-create-user.sql diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/sql-scripts/02-employee-directory.sql b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/sql-scripts/02-employee-directory.sql similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/sql-scripts/02-employee-directory.sql rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/sql-scripts/02-employee-directory.sql diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/DemoController.java diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/application-prod.properties b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/application-prod.properties similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/application-prod.properties rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/application-prod.properties diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/application.properties b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/application.properties similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/application.properties rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/application.properties diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/static/index.html b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/static/index.html similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/static/index.html rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/static/index.html diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/employees/employee-form.html b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/employees/employee-form.html similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/employees/employee-form.html rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/employees/employee-form.html diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/employees/list-employees.html b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/employees/list-employees.html similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/employees/list-employees.html rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/employees/list-employees.html diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/helloworld.html b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/helloworld.html similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/helloworld.html rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/main/resources/templates/helloworld.html diff --git a/05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java b/05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java similarity index 100% rename from 05-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java rename to 05-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/HELP.md b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/HELP.md similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/HELP.md rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/HELP.md diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/README.md b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/README.md similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/README.md rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/README.md diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/mvnw b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/mvnw similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/mvnw rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/mvnw diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/mvnw.cmd b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/mvnw.cmd similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/mvnw.cmd rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/mvnw.cmd diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/pom.xml diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/sql-scripts/01-create-user.sql b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/sql-scripts/01-create-user.sql similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/sql-scripts/01-create-user.sql rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/sql-scripts/01-create-user.sql diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/sql-scripts/02-employee-directory.sql b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/sql-scripts/02-employee-directory.sql similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/sql-scripts/02-employee-directory.sql rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/sql-scripts/02-employee-directory.sql diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplication.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/config/DemoConfig.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/config/DemoConfig.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/config/DemoConfig.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/config/DemoConfig.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/controller/EmployeeController.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/EmployeeRepository.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/RefreshDAO.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/RefreshDAO.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/RefreshDAO.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/RefreshDAO.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/RefreshDAOImpl.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/RefreshDAOImpl.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/RefreshDAOImpl.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/dao/RefreshDAOImpl.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/entity/Employee.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeService.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/EmployeeServiceImpl.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/RefreshService.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/RefreshService.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/RefreshService.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/java/com/luv2code/springboot/thymeleafdemo/service/RefreshService.java diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/application-prod.properties b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/application-prod.properties similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/application-prod.properties rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/application-prod.properties diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/application.properties b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/application.properties similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/application.properties rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/application.properties diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/static/css/styles.css b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/static/css/styles.css similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/static/css/styles.css rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/static/css/styles.css diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/static/index.html b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/static/index.html similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/static/index.html rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/static/index.html diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/templates/employees/employee-form.html b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/templates/employees/employee-form.html similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/templates/employees/employee-form.html rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/templates/employees/employee-form.html diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/templates/employees/list-employees.html b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/templates/employees/list-employees.html similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/templates/employees/list-employees.html rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/main/resources/templates/employees/list-employees.html diff --git a/06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java b/06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java similarity index 100% rename from 06-bonus-spring-boot-3-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java rename to 06-bonus-spring-boot-spring-mvc-crud-aws-environment-variables-encrypted-with-data-refresher/src/test/java/com/luv2code/springboot/thymeleafdemo/ThymeleafdemoApplicationTests.java