Skip to content

Commit 965513d

Browse files
committedMar 17, 2025·
Fix broken docs
Signed-off-by: raccoonback <kosb15@naver.com>
1 parent d5a0263 commit 965513d

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed
 

‎docs/modules/ROOT/pages/http-server.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ To enable *PING* frames for HTTP/2 connections, configure the HttpServer as foll
747747

748748
{examples-link}/liveness/Application.java
749749
----
750-
include::{examples-dir}/liveness/Application.java[lines=23..40]
750+
include::{examples-dir}/liveness/Application.java[lines=26..50]
751751
----
752752
<1> To set up a health check using HTTP2 Ping frame, `idleTimeout` must be set first.
753753
<2> Sets the interval for sending `HTTP/2` `PING` frames and receiving `ACK` responses

‎reactor-netty-examples/src/main/java/reactor/netty/examples/documentation/http/server/liveness/Application.java

+13-3
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,33 @@
1616
package reactor.netty.examples.documentation.http.server.liveness;
1717

1818
import reactor.netty.DisposableServer;
19+
import reactor.netty.http.Http2SslContextSpec;
20+
import reactor.netty.http.HttpProtocol;
1921
import reactor.netty.http.server.HttpServer;
2022

23+
import java.io.File;
2124
import java.time.Duration;
2225

2326
public class Application {
2427

2528
public static void main(String[] args) {
29+
File cert = new File("certificate.crt");
30+
File key = new File("private.key");
31+
32+
Http2SslContextSpec http2SslContextSpec = Http2SslContextSpec.forServer(cert, key);
33+
2634
DisposableServer server =
2735
HttpServer.create()
36+
.port(8080)
37+
.protocol(HttpProtocol.H2)
38+
.secure(spec -> spec.sslContext(http2SslContextSpec))
2839
.idleTimeout(Duration.ofSeconds(1)) //<1>
29-
.secure()
3040
.http2Settings(
3141
builder -> builder.pingAckTimeout(Duration.ofMillis(600)) // <2>
3242
.pingScheduleInterval(Duration.ofMillis(300)) // <3>
3343
.pingAckDropThreshold(2) // <4>
34-
);
35-
.bindNow();
44+
)
45+
.bindNow();
3646

3747
server.onDispose()
3848
.block();

0 commit comments

Comments
 (0)