Vert x安裝指南

2021-06-25 07:04:01 字數 1170 閱讀 2660

官方安裝教程:

需要注意的是vertx至少需要jdk1.7版本

1、解壓安裝包

tar -zxvf ~/downloads/vert.x-2.1.2.tar

2、新增環境變數

將vertx的bin目錄新增到path環境變數中

vi ~/.bash_profile

export vertx_home=/usr/local/cellar/vert.x-2.1.2

export path=$vertx_home/bin:$path

source ~/.bash_profile

3、檢查版本

vertx version

將會顯示vertx版本,類似如下:

2.1.2 (built 2014-07-24 07:45:28)

4、測試安裝

我們可以通過寫乙個簡單的web服務來測試vertx安裝

新建檔案server.js,新增下面的測試**

執行**:

vertx run server.js

downloading io.vertx~lang-rhino~2.1.1. please wait...

downloading 100%

module io.vertx~lang-rhino~2.1.1 successfully installed

downloading io.vertx~lang-js~1.1.0. please wait...

downloading 100%

module io.vertx~lang-js~1.1.0 successfully installed

succeeded in deploying verticle

開啟瀏覽器,輸入http://localhost:8080,你將會看到"hello world!"

mysql安裝指南 MySQL安裝指南

本文僅僅針對mysql在windows 環境下的應用,展開說明。mysql enterprise edition mysql企業版 含了資料庫檔案,不包含其他的工具元件。許多任務具元件,比如notifier,workbench,connector等。安裝了這個,就等於mysql 安裝全了。ga 是穩...

Vert x 3學習筆記 12

streams 實現的子類 httpclientresponse,datagramsocket,httpclientrequest,httpserverfileupload,httpserverrequest,httpserverrequeststream,messageconsumer,netso...

學點新東西(二)Vert x

vert.x框架依託於netty,是乙個基於事件和非同步的工具集,特點是輕量 高效能 支援多語言開發。vert.x是事件驅動的,其處理請求的高效能也是基於其事件機制。vert.x的事件機制中的主要概念 event loop event loop vertical worker vertical ev...