vert.x笔记:2.hello vert.x--第一个vert.x hello world工程

假设:

本文及以下系列文章,假设你已经对jdk1.8新特性中的函数式编程及lambda匿名函数有一定了解,并会熟练使用maven。

开发环境配置:

使用最新版的vert.x 3.0,需要安装jdk1.8
maven需要3.0以上版本,推荐直接使用最新版
jdk及maven如何配置,参考百度教程

ide需求:myeclipse 2015 stable1.0及以上或者eclipse 4.4及以上

第一个maven工程

新建pom.xml文件


<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0modelVersion>
    <groupId>com.heartlifesgroupId>
    <artifactId>vertx-demoartifactId>
    <version>3.0.0version>
    <dependencies>
        <dependency>
        <groupId>io.vertxgroupId>
        <artifactId>vertx-coreartifactId>
        <version>${project.version}version>
    dependency>
        <dependency>
            <groupId>io.vertxgroupId>
            <artifactId>vertx-webartifactId>
            <version>${project.version}version>
        dependency>
    dependencies>
    <build>
        <pluginManagement>
            <plugins>
            
                <plugin>
                    <artifactId>maven-compiler-pluginartifactId>
                    <version>3.1version>
                    <configuration>
                        <source>1.8source>
                        <target>1.8target>
                        <compilerArgs>
                            <arg>-Acodetrans.output=${project.basedir}/src/mainarg>
                        compilerArgs>
                    configuration>
                plugin>
            plugins>
        pluginManagement>
    build>
project>

生成eclipse工程:

mvn eclipse:eclipse

至此,一个基于vert.x框架空工程就创建完成了

第一个hello world代码

新建HelloWorld类:

package com.heartlifes.vertx.demo.hello;

import io.vertx.core.AbstractVerticle;
import io.vertx.core.Vertx;
import io.vertx.ext.web.Router;

public class HelloWorld extends AbstractVerticle {

    @Override
    public void start() throws Exception {
        Router router = Router.router(vertx);
        router.route().handler(
                routingContext -> {
                    routingContext.response()
                            .putHeader("content-type", "text/html")
                            .end("hello vert.x");
                });

        vertx.createHttpServer().requestHandler(router::accept).listen(8080);
    }

    public static void main(String[] args) {
        Vertx vertx = Vertx.vertx();
        vertx.deployVerticle(new HelloWorld());
    }
}

执行代码,在浏览器中输入localhost:8080,看看返回了什么。

至此,第一个vert.x的hello world工程搭建完毕,我们会在后面的章节里解释每行代码的作用。

你可能感兴趣的:(vert.x,vert.x)