forked from vert-x3/vertx-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Server.java
46 lines (37 loc) · 1.39 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
40
41
42
43
44
45
46
package io.vertx.example.web.http2;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.http.HttpServerOptions;
import io.vertx.core.net.OpenSSLEngineOptions;
import io.vertx.core.net.PemKeyCertOptions;
import io.vertx.example.util.Runner;
import io.vertx.ext.web.Router;
/*
* @author <a href="mailto:[email protected]">Paulo Lopes</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 {
final Image image = new Image(vertx, "coin.png");
Router router = Router.router(vertx);
router.get("/").handler(ctx -> {
ctx.response()
.putHeader("Content-Type", "text/html")
.end(image.generateHTML(16));
});
router.get("/img/:x/:y").handler(ctx -> {
ctx.response()
.putHeader("Content-Type", "image/png")
.end(image.getPixel(Integer.parseInt(ctx.pathParam("x")), Integer.parseInt(ctx.pathParam("y"))));
});
vertx.createHttpServer(
new HttpServerOptions()
.setSsl(true)
.setUseAlpn(true)
.setPemKeyCertOptions(new PemKeyCertOptions().setKeyPath("tls/server-key.pem").setCertPath("tls/server-cert.pem"))).requestHandler(router)
.listen(8443);
}
}