-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathServer.java
More file actions
58 lines (45 loc) · 1.69 KB
/
Copy pathServer.java
File metadata and controls
58 lines (45 loc) · 1.69 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
/*
* Copyright 2014 Red Hat, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
package io.vertx.example.web.staticsite;
import io.vertx.core.AbstractVerticle;
import io.vertx.example.util.Runner;
import io.vertx.ext.web.Router;
import io.vertx.ext.web.handler.StaticHandler;
/**
*
* A simple static web server example
*
* @author <a href="http://tfox.org">Tim Fox</a>
*/
public class Server extends AbstractVerticle {
// Convenience method so you can run it in your IDE
public static void main(String[] args) {
// We set this property to prevent Vert.x caching files loaded from the classpath on disk
// This means if you edit the static files in your IDE then the next time they are served the new ones will
// be served without you having to restart the main()
// This is only useful for development - do not use this in a production server
System.setProperty("vertx.disableFileCaching", "true");
Runner.runExample(Server.class);
}
@Override
public void start() {
Router router = Router.router(vertx);
// Serve the static pages
router.route().handler(StaticHandler.create().setCachingEnabled(false));
vertx.createHttpServer().requestHandler(router).listen(8080);
System.out.println("Server is started");
}
}