Skip to content

Commit a94cfea

Browse files
committed
Added reference to endpoint based updating mechanism
Added reference to endpoint based updating mechanism
1 parent 5b07bb0 commit a94cfea

File tree

5 files changed

+19
-4
lines changed
  • grpc-client-server-with-ssl/instant-server-ssl-reloading-with-grpc
  • instant-server-ssl-reloading-with-netty/netty-server
  • instant-server-ssl-reloading-with-quarkus
  • instant-server-ssl-reloading-with-vertx/vertx-server
  • instant-ssl-reloading-with-spring-tomcat

5 files changed

+19
-4
lines changed

grpc-client-server-with-ssl/instant-server-ssl-reloading-with-grpc/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ The repository contains:
88

99
### SSL Updating entrypoint for the server:
1010
The server has currently one way to update the existing ssl material:
11-
- File based aka file change listener, see here for the implementation: [FilesBasedSslUpdateService](src/main/java/nl/altindag/grpc/server/service/FileBasedSslUpdateService.java)
11+
- File based aka file change listener, see here for the implementation: [FilesBasedSslUpdateService](src/main/java/nl/altindag/grpc/server/service/FileBasedSslUpdateService.java)
12+
13+
- REST, This option is hosted in a separate module within this repository, see here: [AdminController]((https://github.com/Hakky54/java-tutorials/blob/main/instant-server-ssl-reloading/server/src/main/java/nl/altindag/server/controller/AdminController.java)
14+
- Databased based, aka database change listener. This option is hosted in a separate module within this repository, see here: [Instant SSL Reloading With Database](https://github.com/Hakky54/java-tutorials/tree/main/instant-ssl-reloading-with-spring-jetty-database)
1215

1316
#### Requirements
1417
- Java 17

instant-server-ssl-reloading-with-netty/netty-server/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ The repository contains:
88

99
### SSL Updating entrypoint for the server:
1010
The server has currently one way to update the existing ssl material:
11-
- File based aka file change listener, see here for the implementation: [FilesBasedSslUpdateService](src/main/java/nl/altindag/server/service/FileBasedSslUpdateService.java)
11+
- File based aka file change listener, see here for the implementation: [FilesBasedSslUpdateService](src/main/java/nl/altindag/server/service/FileBasedSslUpdateService.java)
12+
13+
- REST, This option is hosted in a separate module within this repository, see here: [AdminController]((https://github.com/Hakky54/java-tutorials/blob/main/instant-server-ssl-reloading/server/src/main/java/nl/altindag/server/controller/AdminController.java)
14+
- Databased based, aka database change listener. This option is hosted in a separate module within this repository, see here: [Instant SSL Reloading With Database](https://github.com/Hakky54/java-tutorials/tree/main/instant-ssl-reloading-with-spring-jetty-database)
1215

1316
#### Requirements
1417
- Java 17

instant-server-ssl-reloading-with-quarkus/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ The repository contains:
88

99
### SSL Updating entrypoint for the server:
1010
The server has currently one way to update the existing ssl material:
11-
- File based aka file change listener, see here for the implementation: [FilesBasedSslUpdateService](src/main/java/nl/altindag/server/service/FileBasedSslUpdateService.java)
11+
- File based aka file change listener, see here for the implementation: [FilesBasedSslUpdateService](src/main/java/nl/altindag/server/service/FileBasedSslUpdateService.java)
12+
13+
- REST, This option is hosted in a separate module within this repository, see here: [AdminController]((https://github.com/Hakky54/java-tutorials/blob/main/instant-server-ssl-reloading/server/src/main/java/nl/altindag/server/controller/AdminController.java)
14+
- Databased based, aka database change listener. This option is hosted in a separate module within this repository, see here: [Instant SSL Reloading With Database](https://github.com/Hakky54/java-tutorials/tree/main/instant-ssl-reloading-with-spring-jetty-database)
1215

1316
#### Requirements
1417
- Java 17

instant-server-ssl-reloading-with-vertx/vertx-server/README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ The repository contains:
88

99
### SSL Updating entrypoint for the server:
1010
The server has currently one way to update the existing ssl material:
11-
- File based aka file change listener, see here for the implementation: [FilesBasedSslUpdateService](src/main/java/nl/altindag/server/service/FileBasedSslUpdateService.java)
11+
- File based aka file change listener, see here for the implementation: [FilesBasedSslUpdateService](src/main/java/nl/altindag/server/service/FileBasedSslUpdateService.java)
12+
13+
- REST, This option is hosted in a separate module within this repository, see here: [AdminController]((https://github.com/Hakky54/java-tutorials/blob/main/instant-server-ssl-reloading/server/src/main/java/nl/altindag/server/controller/AdminController.java)
14+
- Databased based, aka database change listener. This option is hosted in a separate module within this repository, see here: [Instant SSL Reloading With Database](https://github.com/Hakky54/java-tutorials/tree/main/instant-ssl-reloading-with-spring-jetty-database)
1215

1316
#### Requirements
1417
- Java 17

instant-ssl-reloading-with-spring-tomcat/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ The repository contains:
99
### SSL Updating entrypoint for the server:
1010
The server has two ways to update the existing ssl material:
1111
- File based aka file change listener, see here for the implementation: [FilesBasedSslUpdateService](src/main/java/nl/altindag/server/service/FileBasedSslUpdateService.java)
12+
13+
- REST, This option is hosted in a separate module within this repository, see here: [AdminController]((https://github.com/Hakky54/java-tutorials/blob/main/instant-server-ssl-reloading/server/src/main/java/nl/altindag/server/controller/AdminController.java)
1214
- Databased based, aka database change listener. This option is hosted in a separate module within this repository, see here: [Instant SSL Reloading With Database](https://github.com/Hakky54/java-tutorials/tree/main/instant-ssl-reloading-with-spring-jetty-database)
15+
1316
#### Requirements
1417
- Java 17
1518
- Terminal

0 commit comments

Comments
 (0)