From 93b6ab01be4639b24734528be0360736c05b9872 Mon Sep 17 00:00:00 2001 From: ing9990 Date: Fri, 19 Jan 2024 14:17:36 +0900 Subject: [PATCH 1/5] sec10 Creating resilient microservices --- section10/directory-info.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 section10/directory-info.md diff --git a/section10/directory-info.md b/section10/directory-info.md new file mode 100644 index 0000000..e69de29 From 16f4692143f22aae8c49e611285a01ac3160aa7c Mon Sep 17 00:00:00 2001 From: ing9990 Date: Fri, 19 Jan 2024 14:18:46 +0900 Subject: [PATCH 2/5] Rm sonarqube workflows --- .github/workflows/sonarqube.yml | 39 --------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/sonarqube.yml diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml deleted file mode 100644 index 260e48b..0000000 --- a/.github/workflows/sonarqube.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Sonar - -on: - push: - -jobs: - build: - name: Build - runs-on: ubuntu-latest - permissions: read-all - steps: - - name: Checkout code - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Set up JDK 17 - uses: actions/setup-java@v1 - with: - java-version: 17 - - - name: Cache SonarQube packages - uses: actions/cache@v1 - with: - path: ~/.sonar/cache - key: ${{ runner.os }}-sonar - restore-keys: ${{ runner.os }}-sonar - - - name: Cache Maven packages - uses: actions/cache@v1 - with: - path: ~/.m2 - key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} - restore-keys: ${{ runner.os }}-m2 - - - name: Build and analyze - env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} - run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=Microservice -Dsonar.projectName='Microservice' -f /section8/accounts/ From 47949de022bd4eafdf30d6d3eb6bf8823076122e Mon Sep 17 00:00:00 2001 From: ing9990 Date: Thu, 25 Jan 2024 13:28:17 +0900 Subject: [PATCH 3/5] sec10-132 Typical use case or scenario for the need of Resiliency --- section10/directory-info.md | 1 + .../com/ing9990/accounts/service/impl/AccountsServiceImpl.java | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/section10/directory-info.md b/section10/directory-info.md index e69de29..3951a21 100644 --- a/section10/directory-info.md +++ b/section10/directory-info.md @@ -0,0 +1 @@ +[마이크로 서비스 내의 회복성과 탄력성](https://www.ing9990.xyz/65abf788-743f-40b5-bd23-f2573db60d2a) \ No newline at end of file diff --git a/section9/accounts/src/main/java/com/ing9990/accounts/service/impl/AccountsServiceImpl.java b/section9/accounts/src/main/java/com/ing9990/accounts/service/impl/AccountsServiceImpl.java index 80eeb40..bfb0492 100644 --- a/section9/accounts/src/main/java/com/ing9990/accounts/service/impl/AccountsServiceImpl.java +++ b/section9/accounts/src/main/java/com/ing9990/accounts/service/impl/AccountsServiceImpl.java @@ -101,6 +101,4 @@ public boolean deleteAccount(String mobileNumber) { customerRepository.deleteById(customer.getCustomerId()); return true; } - - } \ No newline at end of file From 7aefd35c3df3b5ec32c1d4d87007b5b7ab1c466b Mon Sep 17 00:00:00 2001 From: ing9990 Date: Tue, 6 Feb 2024 11:30:58 +0900 Subject: [PATCH 4/5] Add resilience4j README --- section10/directory-info.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/section10/directory-info.md b/section10/directory-info.md index 3951a21..5edb15f 100644 --- a/section10/directory-info.md +++ b/section10/directory-info.md @@ -1 +1,3 @@ -[마이크로 서비스 내의 회복성과 탄력성](https://www.ing9990.xyz/65abf788-743f-40b5-bd23-f2573db60d2a) \ No newline at end of file +[마이크로 서비스 내의 회복성과 탄력성](https://www.ing9990.xyz/65abf788-743f-40b5-bd23-f2573db60d2a) + +[Resilience4j README](https://resilience4j.readme.io) \ No newline at end of file From 1630728196fa2d33e3ef80d7e9e51b497786bb34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=83=9C=EC=9A=B0?= Date: Wed, 12 Feb 2025 15:02:24 +0900 Subject: [PATCH 5/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9873904..061a547 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ [도커허브](https://hub.docker.com/repositories/ing9990) -[블로그](https://www.ing9990.xyz/contents/tech/microservice-architecture) +[블로그](https://www.ing9990.com/contents/tech/microservice-architecture)