Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Dec 26, 2024
1 parent 4f3ccdd commit ba875f9
Show file tree
Hide file tree
Showing 59 changed files with 36 additions and 32 deletions.
6 changes: 3 additions & 3 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/**/*'
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# spring-boot-choas-monkey
# spring-boot-chaos-monkey

[Choas Monkey](https://netflix.github.io/chaosmonkey/)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
2 changes: 1 addition & 1 deletion graphql/boot-graphql-webflux/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
<configuration>
<java>
<palantirJavaFormat>
<version>2.47.0</version>
<version>2.50.0</version>
</palantirJavaFormat>
<importOrder />
<removeUnusedImports />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
2 changes: 1 addition & 1 deletion jpa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
|----------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
Expand Down
4 changes: 2 additions & 2 deletions jpa/keyset-pagination/blaze-persistence/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<artifactId>boot-data-keyset-pagination-blaze</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>boot-data-keyset-pagination-blaze</name>
<description>boot-data-keyset-pagination</description>
<description>boot-data-keyset-pagination-blaze</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -229,7 +229,7 @@
<configuration>
<java>
<googleJavaFormat>
<version>1.22.0</version>
<version>1.25.2</version>
<style>AOSP</style>
</googleJavaFormat>
<importOrder />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<modules>
<module>batch-boot-jpa-sample</module>
<module>boot-api-archunit-sample</module>
<module>boot-choas-monkey</module>
<module>boot-chaos-monkey</module>
<module>boot-grafana-lgtm</module>
<module>boot-mongodb-elasticsearch</module>
<module>boot-opensearch-sample</module>
Expand Down
2 changes: 1 addition & 1 deletion r2dbc/boot-jooq-r2dbc-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@
<configuration>
<java>
<googleJavaFormat>
<version>1.25.0</version>
<version>1.25.2</version>
<style>AOSP</style>
</googleJavaFormat>
</java>
Expand Down

0 comments on commit ba875f9

Please sign in to comment.