diff --git a/.github/labeler.yml b/.github/labeler.yml index 70bedad96..7606e1a7d 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -4,9 +4,9 @@ "component : archunit": - changed-files: - any-glob-to-any-file: 'boot-api-archunit-sample/**/*' -"component : choas-monkey": +"component : chaos-monkey": - changed-files: - - any-glob-to-any-file: 'boot-choas-monkey/**/*' + - any-glob-to-any-file: 'boot-chaos-monkey/**/*' "component : grafana-lgtm": - changed-files: - any-glob-to-any-file: 'boot-grafana-lgtm/**/*' @@ -124,7 +124,7 @@ - any-glob-to-any-file: - batch-boot-jpa-sample/pom.xml - boot-api-archunit-sample/pom.xml - - boot-choas-monkey/pom.xml + - boot-chaos-monkey/pom.xml - boot-mongodb-elasticsearch/pom.xml - boot-opensearch-sample/pom.xml - boot-rabbitmq-thymeleaf/pom.xml diff --git a/.github/workflows/boot-choas-monkey.yml b/.github/workflows/boot-chaos-monkey.yml similarity index 82% rename from .github/workflows/boot-choas-monkey.yml rename to .github/workflows/boot-chaos-monkey.yml index fd18ed316..6f72d051c 100644 --- a/.github/workflows/boot-choas-monkey.yml +++ b/.github/workflows/boot-chaos-monkey.yml @@ -1,13 +1,13 @@ -name: boot-choas-monkey +name: boot-chaos-monkey on: push: paths: - - "boot-choas-monkey/**" + - "boot-chaos-monkey/**" branches: [main] pull_request: paths: - - "boot-choas-monkey/**" + - "boot-chaos-monkey/**" types: - opened - synchronize @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest defaults: run: - working-directory: boot-choas-monkey + working-directory: boot-chaos-monkey steps: - uses: actions/checkout@v4 with: diff --git a/README.md b/README.md index 6777ffbbe..dc808e597 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The following table list all sample codes related to the spring boot integration |-------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------| | [Spring Batch Implementation](./batch-boot-jpa-sample) | The application, demonstrates implementing Spring Batch 5 using simple config and creating batch tables using liquibase | Completed | | [Archunit Implementation](./boot-api-archunit-sample) | The application, demonstrates how to apply arch unit rules to the spring boot project | Completed | -| [Choas Engineering Principles](./boot-choas-monkey) | The application, demonstrates how to apply choas engineering concepts to the spring boot project, test using Gatling to demonstrate the difference | WIP | +| [Chaos Engineering Principles](./boot-chaos-monkey) | The application, demonstrates how to apply chaos engineering concepts to the spring boot project, test using Gatling to demonstrate the difference | WIP | | [mongodb-elasticsearch-integration](./boot-mongodb-elasticsearch) | The application, demonstrates saving the data in MongoDb and then searching in ElasticSearch for quick Search, GeoSpatial Search | WIP | | [Rabbit Mq Implementation](./boot-rabbitmq-thymeleaf) | The application, demonstrates how rabbitmq works with producer side acknowledgement | Completed | | [Rest API Documentation with examples](./boot-rest-docs-sample) | This application, demonstrates ability to generate pdf API documentation using spring rest docs | Completed | diff --git a/SUMMARY.md b/SUMMARY.md index f969f07da..f3dd2675d 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -3,7 +3,7 @@ * [README](README.md) * [Spring Batch implementation](batch-boot-jpa-sample/README.md) * [API Example for Archunit](boot-api-archunit-sample/README.md) -* [spring-boot-choas-monkey](boot-choas-monkey/README.md) +* [spring-boot-chaos-monkey](boot-chaos-monkey/README.md) * [Grafana LGTM Implementation](boot-grafana-lgtm/ReadMe.md) * [MongoDb for insertion and search using elastic search](boot-mongodb-elasticsearch/README.md) * [OpenSearch Implementation](boot-opensearch-sample/README.md) diff --git a/boot-choas-monkey/.github/workflows/maven.yml b/boot-chaos-monkey/.github/workflows/maven.yml similarity index 100% rename from boot-choas-monkey/.github/workflows/maven.yml rename to boot-chaos-monkey/.github/workflows/maven.yml diff --git a/boot-choas-monkey/.gitignore b/boot-chaos-monkey/.gitignore similarity index 100% rename from boot-choas-monkey/.gitignore rename to boot-chaos-monkey/.gitignore diff --git a/boot-choas-monkey/.mvn/wrapper/maven-wrapper.jar b/boot-chaos-monkey/.mvn/wrapper/maven-wrapper.jar similarity index 100% rename from boot-choas-monkey/.mvn/wrapper/maven-wrapper.jar rename to boot-chaos-monkey/.mvn/wrapper/maven-wrapper.jar diff --git a/boot-choas-monkey/.mvn/wrapper/maven-wrapper.properties b/boot-chaos-monkey/.mvn/wrapper/maven-wrapper.properties similarity index 100% rename from boot-choas-monkey/.mvn/wrapper/maven-wrapper.properties rename to boot-chaos-monkey/.mvn/wrapper/maven-wrapper.properties diff --git a/boot-choas-monkey/.yo-rc.json b/boot-chaos-monkey/.yo-rc.json similarity index 100% rename from boot-choas-monkey/.yo-rc.json rename to boot-chaos-monkey/.yo-rc.json diff --git a/boot-choas-monkey/Dockerfile b/boot-chaos-monkey/Dockerfile similarity index 100% rename from boot-choas-monkey/Dockerfile rename to boot-chaos-monkey/Dockerfile diff --git a/boot-choas-monkey/Jenkinsfile b/boot-chaos-monkey/Jenkinsfile similarity index 100% rename from boot-choas-monkey/Jenkinsfile rename to boot-chaos-monkey/Jenkinsfile diff --git a/boot-choas-monkey/README.md b/boot-chaos-monkey/README.md similarity index 99% rename from boot-choas-monkey/README.md rename to boot-chaos-monkey/README.md index 52f6837dc..325444c87 100644 --- a/boot-choas-monkey/README.md +++ b/boot-chaos-monkey/README.md @@ -1,4 +1,4 @@ -# spring-boot-choas-monkey +# spring-boot-chaos-monkey [Choas Monkey](https://netflix.github.io/chaosmonkey/) diff --git a/boot-choas-monkey/docker/docker-compose-app.yml b/boot-chaos-monkey/docker/docker-compose-app.yml similarity index 100% rename from boot-choas-monkey/docker/docker-compose-app.yml rename to boot-chaos-monkey/docker/docker-compose-app.yml diff --git a/boot-choas-monkey/docker/docker-compose.yml b/boot-chaos-monkey/docker/docker-compose.yml similarity index 100% rename from boot-choas-monkey/docker/docker-compose.yml rename to boot-chaos-monkey/docker/docker-compose.yml diff --git a/boot-choas-monkey/lombok.config b/boot-chaos-monkey/lombok.config similarity index 100% rename from boot-choas-monkey/lombok.config rename to boot-chaos-monkey/lombok.config diff --git a/boot-choas-monkey/mvnw b/boot-chaos-monkey/mvnw similarity index 100% rename from boot-choas-monkey/mvnw rename to boot-chaos-monkey/mvnw diff --git a/boot-choas-monkey/mvnw.cmd b/boot-chaos-monkey/mvnw.cmd similarity index 100% rename from boot-choas-monkey/mvnw.cmd rename to boot-chaos-monkey/mvnw.cmd diff --git a/boot-choas-monkey/pom.xml b/boot-chaos-monkey/pom.xml similarity index 100% rename from boot-choas-monkey/pom.xml rename to boot-chaos-monkey/pom.xml diff --git a/boot-choas-monkey/sonar-project.properties b/boot-chaos-monkey/sonar-project.properties similarity index 100% rename from boot-choas-monkey/sonar-project.properties rename to boot-chaos-monkey/sonar-project.properties diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/Application.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/ChaosMonkeyApplication.java similarity index 81% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/Application.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/ChaosMonkeyApplication.java index 802ce4e8e..fb395ebc4 100644 --- a/boot-choas-monkey/src/main/java/com/example/choasmonkey/Application.java +++ b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/ChaosMonkeyApplication.java @@ -7,9 +7,9 @@ @SpringBootApplication @EnableConfigurationProperties({ApplicationProperties.class}) -public class ChoasMonkeyApplication { +public class ChaosMonkeyApplication { public static void main(String[] args) { - SpringApplication.run(ChoasMonkeyApplication.class, args); + SpringApplication.run(ChaosMonkeyApplication.class, args); } } diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/config/ApplicationProperties.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/ApplicationProperties.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/config/ApplicationProperties.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/ApplicationProperties.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/config/Initializer.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/Initializer.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/config/Initializer.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/Initializer.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/config/SwaggerConfig.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/SwaggerConfig.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/config/SwaggerConfig.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/SwaggerConfig.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/config/WebMvcConfig.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/WebMvcConfig.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/config/WebMvcConfig.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/WebMvcConfig.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/config/logging/Loggable.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/logging/Loggable.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/config/logging/Loggable.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/logging/Loggable.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/config/logging/LoggingAspect.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/logging/LoggingAspect.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/config/logging/LoggingAspect.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/config/logging/LoggingAspect.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/entities/Customer.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/entities/Customer.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/entities/Customer.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/entities/Customer.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/exception/GlobalExceptionHandler.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/exception/GlobalExceptionHandler.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/exception/GlobalExceptionHandler.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/exception/GlobalExceptionHandler.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/model/response/CustomerResponse.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/model/response/CustomerResponse.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/model/response/CustomerResponse.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/model/response/CustomerResponse.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/repositories/CustomerRepository.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/repositories/CustomerRepository.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/repositories/CustomerRepository.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/repositories/CustomerRepository.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/services/CustomerService.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/services/CustomerService.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/services/CustomerService.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/services/CustomerService.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/utils/AppConstants.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/utils/AppConstants.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/utils/AppConstants.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/utils/AppConstants.java diff --git a/boot-choas-monkey/src/main/java/com/example/choasmonkey/web/controllers/CustomerController.java b/boot-chaos-monkey/src/main/java/com/example/choasmonkey/web/controllers/CustomerController.java similarity index 100% rename from boot-choas-monkey/src/main/java/com/example/choasmonkey/web/controllers/CustomerController.java rename to boot-chaos-monkey/src/main/java/com/example/choasmonkey/web/controllers/CustomerController.java diff --git a/boot-choas-monkey/src/main/resources/application-local.properties b/boot-chaos-monkey/src/main/resources/application-local.properties similarity index 100% rename from boot-choas-monkey/src/main/resources/application-local.properties rename to boot-chaos-monkey/src/main/resources/application-local.properties diff --git a/boot-choas-monkey/src/main/resources/application.properties b/boot-chaos-monkey/src/main/resources/application.properties similarity index 100% rename from boot-choas-monkey/src/main/resources/application.properties rename to boot-chaos-monkey/src/main/resources/application.properties diff --git a/boot-choas-monkey/src/main/resources/db/changelog/db.changelog-master.yaml b/boot-chaos-monkey/src/main/resources/db/changelog/db.changelog-master.yaml similarity index 100% rename from boot-choas-monkey/src/main/resources/db/changelog/db.changelog-master.yaml rename to boot-chaos-monkey/src/main/resources/db/changelog/db.changelog-master.yaml diff --git a/boot-choas-monkey/src/main/resources/db/changelog/migration/01-init.xml b/boot-chaos-monkey/src/main/resources/db/changelog/migration/01-init.xml similarity index 100% rename from boot-choas-monkey/src/main/resources/db/changelog/migration/01-init.xml rename to boot-chaos-monkey/src/main/resources/db/changelog/migration/01-init.xml diff --git a/boot-choas-monkey/src/main/resources/db/changelog/migration/02-create_customers_table.xml b/boot-chaos-monkey/src/main/resources/db/changelog/migration/02-create_customers_table.xml similarity index 100% rename from boot-choas-monkey/src/main/resources/db/changelog/migration/02-create_customers_table.xml rename to boot-chaos-monkey/src/main/resources/db/changelog/migration/02-create_customers_table.xml diff --git a/boot-choas-monkey/src/main/resources/logback-spring.xml b/boot-chaos-monkey/src/main/resources/logback-spring.xml similarity index 100% rename from boot-choas-monkey/src/main/resources/logback-spring.xml rename to boot-chaos-monkey/src/main/resources/logback-spring.xml diff --git a/boot-choas-monkey/src/test/java/com/example/choasmonkey/ApplicationIntegrationTest.java b/boot-chaos-monkey/src/test/java/com/example/choasmonkey/ApplicationIntegrationTest.java similarity index 100% rename from boot-choas-monkey/src/test/java/com/example/choasmonkey/ApplicationIntegrationTest.java rename to boot-chaos-monkey/src/test/java/com/example/choasmonkey/ApplicationIntegrationTest.java diff --git a/boot-choas-monkey/src/test/java/com/example/choasmonkey/TestChoasMonkeyApplication.java b/boot-chaos-monkey/src/test/java/com/example/choasmonkey/TestChaosMonkeyApplication.java similarity index 68% rename from boot-choas-monkey/src/test/java/com/example/choasmonkey/TestChoasMonkeyApplication.java rename to boot-chaos-monkey/src/test/java/com/example/choasmonkey/TestChaosMonkeyApplication.java index 8aa53c08c..5ebd2474b 100644 --- a/boot-choas-monkey/src/test/java/com/example/choasmonkey/TestChoasMonkeyApplication.java +++ b/boot-chaos-monkey/src/test/java/com/example/choasmonkey/TestChaosMonkeyApplication.java @@ -3,9 +3,9 @@ import com.example.choasmonkey.common.ContainerConfig; import org.springframework.boot.SpringApplication; -public class TestChoasMonkeyApplication { +public class TestChaosMonkeyApplication { public static void main(String[] args) { - SpringApplication.from(ChoasMonkeyApplication::main).with(ContainerConfig.class).run(args); + SpringApplication.from(ChaosMonkeyApplication::main).with(ContainerConfig.class).run(args); } } diff --git a/boot-choas-monkey/src/test/java/com/example/choasmonkey/common/AbstractIntegrationTest.java b/boot-chaos-monkey/src/test/java/com/example/choasmonkey/common/AbstractIntegrationTest.java similarity index 100% rename from boot-choas-monkey/src/test/java/com/example/choasmonkey/common/AbstractIntegrationTest.java rename to boot-chaos-monkey/src/test/java/com/example/choasmonkey/common/AbstractIntegrationTest.java diff --git a/boot-choas-monkey/src/test/java/com/example/choasmonkey/common/ContainerConfig.java b/boot-chaos-monkey/src/test/java/com/example/choasmonkey/common/ContainerConfig.java similarity index 100% rename from boot-choas-monkey/src/test/java/com/example/choasmonkey/common/ContainerConfig.java rename to boot-chaos-monkey/src/test/java/com/example/choasmonkey/common/ContainerConfig.java diff --git a/boot-choas-monkey/src/test/java/com/example/choasmonkey/gatling/CustomerRequestSimulation.java b/boot-chaos-monkey/src/test/java/com/example/choasmonkey/gatling/CustomerRequestSimulation.java similarity index 100% rename from boot-choas-monkey/src/test/java/com/example/choasmonkey/gatling/CustomerRequestSimulation.java rename to boot-chaos-monkey/src/test/java/com/example/choasmonkey/gatling/CustomerRequestSimulation.java diff --git a/boot-choas-monkey/src/test/java/com/example/choasmonkey/web/controllers/CustomerControllerIT.java b/boot-chaos-monkey/src/test/java/com/example/choasmonkey/web/controllers/CustomerControllerIT.java similarity index 100% rename from boot-choas-monkey/src/test/java/com/example/choasmonkey/web/controllers/CustomerControllerIT.java rename to boot-chaos-monkey/src/test/java/com/example/choasmonkey/web/controllers/CustomerControllerIT.java diff --git a/boot-choas-monkey/src/test/java/com/example/choasmonkey/web/controllers/CustomerControllerTest.java b/boot-chaos-monkey/src/test/java/com/example/choasmonkey/web/controllers/CustomerControllerTest.java similarity index 100% rename from boot-choas-monkey/src/test/java/com/example/choasmonkey/web/controllers/CustomerControllerTest.java rename to boot-chaos-monkey/src/test/java/com/example/choasmonkey/web/controllers/CustomerControllerTest.java diff --git a/boot-choas-monkey/src/test/resources/application-test.properties b/boot-chaos-monkey/src/test/resources/application-test.properties similarity index 100% rename from boot-choas-monkey/src/test/resources/application-test.properties rename to boot-chaos-monkey/src/test/resources/application-test.properties diff --git a/boot-choas-monkey/src/test/resources/logback-test.xml b/boot-chaos-monkey/src/test/resources/logback-test.xml similarity index 100% rename from boot-choas-monkey/src/test/resources/logback-test.xml rename to boot-chaos-monkey/src/test/resources/logback-test.xml diff --git a/graphql/boot-graphql-webflux/pom.xml b/graphql/boot-graphql-webflux/pom.xml index b8a156836..9a12ac515 100644 --- a/graphql/boot-graphql-webflux/pom.xml +++ b/graphql/boot-graphql-webflux/pom.xml @@ -227,7 +227,7 @@ - 2.47.0 + 2.50.0 diff --git a/graphql/boot-graphql-webflux/src/main/java/com/example/graphql/Application.java b/graphql/boot-graphql-webflux/src/main/java/com/example/graphql/GraphQLWebFluxApplication.java similarity index 79% rename from graphql/boot-graphql-webflux/src/main/java/com/example/graphql/Application.java rename to graphql/boot-graphql-webflux/src/main/java/com/example/graphql/GraphQLWebFluxApplication.java index b5a0e67df..931c18155 100644 --- a/graphql/boot-graphql-webflux/src/main/java/com/example/graphql/Application.java +++ b/graphql/boot-graphql-webflux/src/main/java/com/example/graphql/GraphQLWebFluxApplication.java @@ -7,9 +7,9 @@ @SpringBootApplication @EnableConfigurationProperties({ApplicationProperties.class}) -public class Application { +public class GraphQLWebFluxApplication { public static void main(String[] args) { - SpringApplication.run(Application.class, args); + SpringApplication.run(GraphQLWebFluxApplication.class, args); } } diff --git a/graphql/boot-graphql-webflux/src/test/java/com/example/graphql/TestApplication.java b/graphql/boot-graphql-webflux/src/test/java/com/example/graphql/TestGraphQLWebFluxApplication.java similarity index 50% rename from graphql/boot-graphql-webflux/src/test/java/com/example/graphql/TestApplication.java rename to graphql/boot-graphql-webflux/src/test/java/com/example/graphql/TestGraphQLWebFluxApplication.java index 448c53ca8..d8dad0130 100644 --- a/graphql/boot-graphql-webflux/src/test/java/com/example/graphql/TestApplication.java +++ b/graphql/boot-graphql-webflux/src/test/java/com/example/graphql/TestGraphQLWebFluxApplication.java @@ -3,9 +3,11 @@ import com.example.graphql.common.ContainerConfig; import org.springframework.boot.SpringApplication; -public class TestApplication { +public class TestGraphQLWebFluxApplication { public static void main(String[] args) { - SpringApplication.from(Application::main).with(ContainerConfig.class).run(args); + SpringApplication.from(GraphQLWebFluxApplication::main) + .with(ContainerConfig.class) + .run(args); } } diff --git a/httpClients/boot-http-proxy/src/main/java/com/example/rest/proxy/Application.java b/httpClients/boot-http-proxy/src/main/java/com/example/rest/proxy/HttpProxyApplication.java similarity index 81% rename from httpClients/boot-http-proxy/src/main/java/com/example/rest/proxy/Application.java rename to httpClients/boot-http-proxy/src/main/java/com/example/rest/proxy/HttpProxyApplication.java index 7595806f8..006e3f3e2 100644 --- a/httpClients/boot-http-proxy/src/main/java/com/example/rest/proxy/Application.java +++ b/httpClients/boot-http-proxy/src/main/java/com/example/rest/proxy/HttpProxyApplication.java @@ -7,9 +7,9 @@ @SpringBootApplication @EnableConfigurationProperties({ApplicationProperties.class}) -public class Application { +public class HttpProxyApplication { public static void main(String[] args) { - SpringApplication.run(Application.class, args); + SpringApplication.run(HttpProxyApplication.class, args); } } diff --git a/httpClients/boot-http-proxy/src/test/java/com/example/rest/proxy/TestApplication.java b/httpClients/boot-http-proxy/src/test/java/com/example/rest/proxy/TestHttpProxyApplication.java similarity index 59% rename from httpClients/boot-http-proxy/src/test/java/com/example/rest/proxy/TestApplication.java rename to httpClients/boot-http-proxy/src/test/java/com/example/rest/proxy/TestHttpProxyApplication.java index 75164e1a1..10e809fb3 100644 --- a/httpClients/boot-http-proxy/src/test/java/com/example/rest/proxy/TestApplication.java +++ b/httpClients/boot-http-proxy/src/test/java/com/example/rest/proxy/TestHttpProxyApplication.java @@ -3,9 +3,9 @@ import com.example.rest.proxy.common.ContainersConfig; import org.springframework.boot.SpringApplication; -class TestApplication { +class TestHttpProxyApplication { public static void main(String[] args) { - SpringApplication.from(Application::main).with(ContainersConfig.class).run(args); + SpringApplication.from(HttpProxyApplication::main).with(ContainersConfig.class).run(args); } } diff --git a/jpa/README.md b/jpa/README.md index 6e02cceaa..4752fd0c1 100644 --- a/jpa/README.md +++ b/jpa/README.md @@ -2,7 +2,7 @@ Java Persistence API (JPA) is a Java application programming interface specification that describes the management of relational data in applications using Java Platform, Standard Edition and Java Platform, Enterprise Edition. It provides an object-relational mapping (ORM) facility for the Java language, allowing developers to interact with databases through the use of Java objects. JPA allows developers to easily persist and query data in a database, providing a simple and standardized approach to data persistence and management. -## All Niche Thing about using JPA +## All Niche Things about using JPA | Title | Description | |----------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| diff --git a/jpa/keyset-pagination/blaze-persistence/pom.xml b/jpa/keyset-pagination/blaze-persistence/pom.xml index 4ab33667a..d804fa5db 100644 --- a/jpa/keyset-pagination/blaze-persistence/pom.xml +++ b/jpa/keyset-pagination/blaze-persistence/pom.xml @@ -14,7 +14,7 @@ boot-data-keyset-pagination-blaze 0.0.1-SNAPSHOT boot-data-keyset-pagination-blaze - boot-data-keyset-pagination + boot-data-keyset-pagination-blaze UTF-8 @@ -229,7 +229,7 @@ - 1.22.0 + 1.25.2 diff --git a/jpa/keyset-pagination/blaze-persistence/src/main/java/com/example/keysetpagination/Application.java b/jpa/keyset-pagination/blaze-persistence/src/main/java/com/example/keysetpagination/BlazePersistenceApplication.java similarity index 79% rename from jpa/keyset-pagination/blaze-persistence/src/main/java/com/example/keysetpagination/Application.java rename to jpa/keyset-pagination/blaze-persistence/src/main/java/com/example/keysetpagination/BlazePersistenceApplication.java index 23c8ecfad..82f561ef5 100644 --- a/jpa/keyset-pagination/blaze-persistence/src/main/java/com/example/keysetpagination/Application.java +++ b/jpa/keyset-pagination/blaze-persistence/src/main/java/com/example/keysetpagination/BlazePersistenceApplication.java @@ -7,9 +7,9 @@ @SpringBootApplication @EnableConfigurationProperties({ApplicationProperties.class}) -public class Application { +public class BlazePersistenceApplication { public static void main(String[] args) { - SpringApplication.run(Application.class, args); + SpringApplication.run(BlazePersistenceApplication.class, args); } } diff --git a/jpa/keyset-pagination/blaze-persistence/src/test/java/com/example/keysetpagination/TestApplication.java b/jpa/keyset-pagination/blaze-persistence/src/test/java/com/example/keysetpagination/TestBlazePersistenceApplication.java similarity index 58% rename from jpa/keyset-pagination/blaze-persistence/src/test/java/com/example/keysetpagination/TestApplication.java rename to jpa/keyset-pagination/blaze-persistence/src/test/java/com/example/keysetpagination/TestBlazePersistenceApplication.java index a77e888b0..72360712d 100644 --- a/jpa/keyset-pagination/blaze-persistence/src/test/java/com/example/keysetpagination/TestApplication.java +++ b/jpa/keyset-pagination/blaze-persistence/src/test/java/com/example/keysetpagination/TestBlazePersistenceApplication.java @@ -3,10 +3,12 @@ import com.example.keysetpagination.common.ContainersConfig; import org.springframework.boot.SpringApplication; -public class TestApplication { +public class TestBlazePersistenceApplication { public static void main(String[] args) { System.setProperty("spring.profiles.active", "local"); - SpringApplication.from(Application::main).with(ContainersConfig.class).run(args); + SpringApplication.from(BlazePersistenceApplication::main) + .with(ContainersConfig.class) + .run(args); } } diff --git a/pom.xml b/pom.xml index 8001481ee..83e24b969 100644 --- a/pom.xml +++ b/pom.xml @@ -17,7 +17,7 @@ batch-boot-jpa-sample boot-api-archunit-sample - boot-choas-monkey + boot-chaos-monkey boot-grafana-lgtm boot-mongodb-elasticsearch boot-opensearch-sample diff --git a/r2dbc/boot-jooq-r2dbc-sample/pom.xml b/r2dbc/boot-jooq-r2dbc-sample/pom.xml index b0a5d9e4f..34f6ca762 100644 --- a/r2dbc/boot-jooq-r2dbc-sample/pom.xml +++ b/r2dbc/boot-jooq-r2dbc-sample/pom.xml @@ -332,7 +332,7 @@ - 1.25.0 + 1.25.2