您好,登錄后才能下訂單哦!
最近是真的忙,好久沒寫了,再來分享一點新東西!!!
一、 新建Gradle項目
①
②選擇Gradle(如果沒有安裝gradle,自己下載一個)
③
④選擇gradle
下一步,然后輸入項目名稱和磁盤路徑,點擊Finish。
二、配置vertx依賴
項目打開之后,在build.gradle文件中dependencies里面加入vertx的核心依賴
compile 'io.vertx:vertx-core:3.4.2'
在build.gradle最下面加入任務
task copyJars(type: Copy) { from configurations.runtime into 'lib' // 目標位置 }
build.gradle內容
group 'test' version '1.0-SNAPSHOT' apply plugin: 'java' sourceCompatibility = 1.5 repositories { mavenCentral() } dependencies { compile 'io.vertx:vertx-core:3.4.2' testCompile group: 'junit', name: 'junit', version: '4.11' } task copyJars(type: Copy) { from configurations.runtime into 'lib' // 目標位置 }
執行這個任務(命令行 gradle copyJars或者在右側找copyJars雙擊),會將依賴jar下載到項目根目錄下的lib目錄
然后右擊lib –> Add as Library…
如果沒有依賴就會報錯
三、 創建Java項目
①創建Module
②創建Class
創建web服務的方式
1、直接main方法啟動
import io.vertx.core.Vertx; public class App1 { public static void main(String[] args) { Vertx.vertx().createHttpServer().requestHandler(req -> req.response(). end("Hello Vertx!")).listen(8989); } }
在地址欄輸入 localhost:8989就可以看到Hello Vertx!
2、繼承Application重寫start方法
import io.vertx.core.Vertx; import javafx.application.Application; import javafx.stage.Stage; public class App2 extends Application { @Override public void start(Stage primaryStage) throws Exception { Vertx.vertx().createHttpServer().requestHandler(req -> req.response(). end("Hello My Application!")).listen(8888); } }
3、繼承AbstractVerticle重寫start方法
import io.vertx.core.AbstractVerticle; import io.vertx.core.Vertx; public class App3 extends AbstractVerticle { @Override public void start() { Vertx.vertx() .createHttpServer() .requestHandler(r -> { r.response().end("Hello Verticle !!!"); }) .listen(8787); } public static void main(String[] args) { App3 app = new App3(); app.start(); } }
通過main方法啟動
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。