forked from vert-x3/vertx-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Server.java
39 lines (32 loc) · 1.03 KB
/
Server.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package io.vertx.example.webclient.https;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.http.HttpServerOptions;
import io.vertx.core.net.JksOptions;
import io.vertx.example.util.Runner;
/*
* @author <a href="mailto:[email protected]">Julien Viet</a>
*/
public class Server extends AbstractVerticle {
// Convenience method so you can run it in your IDE
public static void main(String[] args) {
Runner.runExample(Server.class);
}
@Override
public void start() throws Exception {
// Start an SSL/TLS http server
vertx.createHttpServer(new HttpServerOptions().setKeyStoreOptions(new JksOptions()
.setPath("server-keystore.jks")
.setPassword("wibble"))
.setSsl(true)
).requestHandler(req -> {
req.response().end();
}).listen(8443, listenResult -> {
if (listenResult.failed()) {
System.out.println("Could not start HTTP server");
listenResult.cause().printStackTrace();
} else {
System.out.println("Server started");
}
});
}
}