实例介绍
【实例简介】
vertx-examples源码下载
这是一个包含各种示例的源码下载站点,您可以轻松地运行和使用Vert.x的各种功能和服务。
【实例截图】
【核心代码】
文件清单
└── vertx-examples-b6194db5b5e7eac3173f8c968c9ecac8e4a567f9
├── amqp-proton-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── proton
│ ├── client
│ │ ├── Receiver.java
│ │ ├── ReconnectReceiver.java
│ │ ├── ReconnectSender.java
│ │ └── Sender.java
│ └── server
│ └── HelloServer.java
├── app.json
├── camel-bridge-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── camel
│ │ ├── feed
│ │ │ ├── FeedExample.java
│ │ │ └── ReleasePostFilter.java
│ │ └── rmi
│ │ ├── HelloServiceImpl.java
│ │ ├── HelloService.java
│ │ └── RMIExample.java
│ └── resources
│ ├── META-INF
│ │ └── spring
│ │ └── camelContext.xml
│ └── myapp.properties
├── cassandra-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── cassandra
│ ├── prepared
│ │ └── PreparedExample.java
│ ├── simple
│ │ └── SimpleExample.java
│ └── streaming
│ └── StreamingExample.java
├── circuit-breaker-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── circuit
│ └── breaker
│ ├── Client.java
│ └── Server.java
├── consul-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── examples
│ └── consul
│ └── ConsulClientVerticle.java
├── core-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── core
│ │ ├── embed
│ │ │ └── EmbeddedServer.java
│ │ ├── eventbus
│ │ │ ├── messagecodec
│ │ │ │ ├── ClusterReceiver.java
│ │ │ │ ├── LocalReceiver.java
│ │ │ │ ├── Sender.java
│ │ │ │ └── util
│ │ │ │ ├── CustomMessageCodec.java
│ │ │ │ └── CustomMessage.java
│ │ │ ├── pointtopoint
│ │ │ │ ├── Receiver.java
│ │ │ │ └── Sender.java
│ │ │ ├── pubsub
│ │ │ │ ├── Receiver.java
│ │ │ │ └── Sender.java
│ │ │ └── ssl
│ │ │ ├── Receiver.java
│ │ │ └── Sender.java
│ │ ├── execblocking
│ │ │ ├── ExecBlockingDedicatedPoolExample.java
│ │ │ └── ExecBlockingExample.java
│ │ ├── future
│ │ │ └── ComposeExample.java
│ │ ├── http
│ │ │ ├── https
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── proxy
│ │ │ │ ├── Client.java
│ │ │ │ ├── Proxy.java
│ │ │ │ └── Server.java
│ │ │ ├── proxyconnect
│ │ │ │ ├── Client.java
│ │ │ │ ├── Proxy.java
│ │ │ │ └── Server.java
│ │ │ ├── sendfile
│ │ │ │ └── SendFile.java
│ │ │ ├── sharing
│ │ │ │ ├── Client.java
│ │ │ │ ├── HttpServerVerticle.java
│ │ │ │ └── Server.java
│ │ │ ├── simple
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── simpleform
│ │ │ │ └── SimpleFormServer.java
│ │ │ ├── simpleformupload
│ │ │ │ └── SimpleFormUploadServer.java
│ │ │ ├── upload
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── websockets
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── http2
│ │ │ ├── customframes
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── h2c
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── push
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── simple
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── jsonstreaming
│ │ │ ├── DataPoint.java
│ │ │ └── JsonStreamingExample.java
│ │ ├── net
│ │ │ ├── echo
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── echossl
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── greeter
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── stream
│ │ │ ├── Batch.java
│ │ │ ├── BatchStream.java
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ └── verticle
│ │ ├── asyncstart
│ │ │ ├── DeployExample.java
│ │ │ └── OtherVerticle.java
│ │ ├── deploy
│ │ │ ├── DeployExample.java
│ │ │ └── OtherVerticle.java
│ │ └── worker
│ │ ├── MainVerticle.java
│ │ └── WorkerVerticle.java
│ └── resources
│ ├── io
│ │ └── vertx
│ │ └── example
│ │ └── core
│ │ ├── eventbus
│ │ │ └── ssl
│ │ │ └── keystore.jks
│ │ ├── http
│ │ │ ├── https
│ │ │ │ └── server-keystore.jks
│ │ │ ├── sendfile
│ │ │ │ ├── index.html
│ │ │ │ ├── page1.html
│ │ │ │ └── page2.html
│ │ │ ├── simpleform
│ │ │ │ └── index.html
│ │ │ ├── simpleformupload
│ │ │ │ └── index.html
│ │ │ ├── upload
│ │ │ │ └── upload.txt
│ │ │ └── websockets
│ │ │ └── ws.html
│ │ ├── http2
│ │ │ ├── customframes
│ │ │ │ ├── server-cert.pem
│ │ │ │ └── server-key.pem
│ │ │ ├── push
│ │ │ │ ├── index.html
│ │ │ │ ├── script.js
│ │ │ │ ├── server-cert.pem
│ │ │ │ └── server-key.pem
│ │ │ └── simple
│ │ │ ├── server-cert.pem
│ │ │ └── server-key.pem
│ │ └── net
│ │ └── echossl
│ │ └── server-keystore.jks
│ └── large.json
├── grpc-examples
│ ├── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── grpc
│ │ ├── consumer
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ ├── conversation
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ ├── empty
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ ├── helloworld
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ ├── pingpong
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ ├── producer
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ └── ssl
│ │ ├── Client.java
│ │ ├── ClientWithStub.java
│ │ ├── Server.java
│ │ └── ServerWithStub.java
│ ├── proto
│ │ ├── empty.proto
│ │ ├── helloworld.proto
│ │ ├── messages.proto
│ │ └── service-definitions.proto
│ └── resources
│ ├── route_guide_db.json
│ └── tls
│ ├── client-truststore.jks
│ └── server-keystore.jks
├── http2-showcase
│ ├── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── README.md
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── io
│ │ │ └── vertx
│ │ │ └── examples
│ │ │ └── http2
│ │ │ ├── DisplayedLatency.java
│ │ │ └── Http2ServerVerticle.java
│ │ └── resources
│ │ └── tls
│ │ ├── server-cert.pem
│ │ ├── server-key.pem
│ │ └── server-keystore.jks
│ ├── templates
│ │ └── image.hbs
│ └── webroot
│ └── img
│ ├── stairway_to_heaven-0-0.jpeg
│ ├── stairway_to_heaven-0-10.jpeg
│ ├── stairway_to_heaven-0-11.jpeg
│ ├── stairway_to_heaven-0-12.jpeg
│ ├── stairway_to_heaven-0-13.jpeg
│ ├── stairway_to_heaven-0-14.jpeg
│ ├── stairway_to_heaven-0-1.jpeg
│ ├── stairway_to_heaven-0-2.jpeg
│ ├── stairway_to_heaven-0-3.jpeg
│ ├── stairway_to_heaven-0-4.jpeg
│ ├── stairway_to_heaven-0-5.jpeg
│ ├── stairway_to_heaven-0-6.jpeg
│ ├── stairway_to_heaven-0-7.jpeg
│ ├── stairway_to_heaven-0-8.jpeg
│ ├── stairway_to_heaven-0-9.jpeg
│ ├── stairway_to_heaven-10-0.jpeg
│ ├── stairway_to_heaven-10-10.jpeg
│ ├── stairway_to_heaven-10-11.jpeg
│ ├── stairway_to_heaven-10-12.jpeg
│ ├── stairway_to_heaven-10-13.jpeg
│ ├── stairway_to_heaven-10-14.jpeg
│ ├── stairway_to_heaven-10-1.jpeg
│ ├── stairway_to_heaven-10-2.jpeg
│ ├── stairway_to_heaven-10-3.jpeg
│ ├── stairway_to_heaven-10-4.jpeg
│ ├── stairway_to_heaven-10-5.jpeg
│ ├── stairway_to_heaven-10-6.jpeg
│ ├── stairway_to_heaven-10-7.jpeg
│ ├── stairway_to_heaven-10-8.jpeg
│ ├── stairway_to_heaven-10-9.jpeg
│ ├── stairway_to_heaven-1-0.jpeg
│ ├── stairway_to_heaven-1-10.jpeg
│ ├── stairway_to_heaven-11-0.jpeg
│ ├── stairway_to_heaven-11-10.jpeg
│ ├── stairway_to_heaven-11-11.jpeg
│ ├── stairway_to_heaven-11-12.jpeg
│ ├── stairway_to_heaven-11-13.jpeg
│ ├── stairway_to_heaven-11-14.jpeg
│ ├── stairway_to_heaven-1-11.jpeg
│ ├── stairway_to_heaven-11-1.jpeg
│ ├── stairway_to_heaven-1-12.jpeg
│ ├── stairway_to_heaven-11-2.jpeg
│ ├── stairway_to_heaven-1-13.jpeg
│ ├── stairway_to_heaven-11-3.jpeg
│ ├── stairway_to_heaven-1-14.jpeg
│ ├── stairway_to_heaven-11-4.jpeg
│ ├── stairway_to_heaven-11-5.jpeg
│ ├── stairway_to_heaven-11-6.jpeg
│ ├── stairway_to_heaven-11-7.jpeg
│ ├── stairway_to_heaven-11-8.jpeg
│ ├── stairway_to_heaven-11-9.jpeg
│ ├── stairway_to_heaven-1-1.jpeg
│ ├── stairway_to_heaven-12-0.jpeg
│ ├── stairway_to_heaven-12-10.jpeg
│ ├── stairway_to_heaven-12-11.jpeg
│ ├── stairway_to_heaven-12-12.jpeg
│ ├── stairway_to_heaven-12-13.jpeg
│ ├── stairway_to_heaven-12-14.jpeg
│ ├── stairway_to_heaven-12-1.jpeg
│ ├── stairway_to_heaven-12-2.jpeg
│ ├── stairway_to_heaven-12-3.jpeg
│ ├── stairway_to_heaven-12-4.jpeg
│ ├── stairway_to_heaven-12-5.jpeg
│ ├── stairway_to_heaven-12-6.jpeg
│ ├── stairway_to_heaven-12-7.jpeg
│ ├── stairway_to_heaven-12-8.jpeg
│ ├── stairway_to_heaven-12-9.jpeg
│ ├── stairway_to_heaven-1-2.jpeg
│ ├── stairway_to_heaven-13-0.jpeg
│ ├── stairway_to_heaven-13-10.jpeg
│ ├── stairway_to_heaven-13-11.jpeg
│ ├── stairway_to_heaven-13-12.jpeg
│ ├── stairway_to_heaven-13-13.jpeg
│ ├── stairway_to_heaven-13-14.jpeg
│ ├── stairway_to_heaven-13-1.jpeg
│ ├── stairway_to_heaven-13-2.jpeg
│ ├── stairway_to_heaven-13-3.jpeg
│ ├── stairway_to_heaven-13-4.jpeg
│ ├── stairway_to_heaven-13-5.jpeg
│ ├── stairway_to_heaven-13-6.jpeg
│ ├── stairway_to_heaven-13-7.jpeg
│ ├── stairway_to_heaven-13-8.jpeg
│ ├── stairway_to_heaven-13-9.jpeg
│ ├── stairway_to_heaven-1-3.jpeg
│ ├── stairway_to_heaven-14-0.jpeg
│ ├── stairway_to_heaven-14-10.jpeg
│ ├── stairway_to_heaven-14-11.jpeg
│ ├── stairway_to_heaven-14-12.jpeg
│ ├── stairway_to_heaven-14-13.jpeg
│ ├── stairway_to_heaven-14-14.jpeg
│ ├── stairway_to_heaven-14-1.jpeg
│ ├── stairway_to_heaven-14-2.jpeg
│ ├── stairway_to_heaven-14-3.jpeg
│ ├── stairway_to_heaven-14-4.jpeg
│ ├── stairway_to_heaven-14-5.jpeg
│ ├── stairway_to_heaven-14-6.jpeg
│ ├── stairway_to_heaven-14-7.jpeg
│ ├── stairway_to_heaven-14-8.jpeg
│ ├── stairway_to_heaven-14-9.jpeg
│ ├── stairway_to_heaven-1-4.jpeg
│ ├── stairway_to_heaven-1-5.jpeg
│ ├── stairway_to_heaven-1-6.jpeg
│ ├── stairway_to_heaven-1-7.jpeg
│ ├── stairway_to_heaven-1-8.jpeg
│ ├── stairway_to_heaven-1-9.jpeg
│ ├── stairway_to_heaven-2-0.jpeg
│ ├── stairway_to_heaven-2-10.jpeg
│ ├── stairway_to_heaven-2-11.jpeg
│ ├── stairway_to_heaven-2-12.jpeg
│ ├── stairway_to_heaven-2-13.jpeg
│ ├── stairway_to_heaven-2-14.jpeg
│ ├── stairway_to_heaven-2-1.jpeg
│ ├── stairway_to_heaven-2-2.jpeg
│ ├── stairway_to_heaven-2-3.jpeg
│ ├── stairway_to_heaven-2-4.jpeg
│ ├── stairway_to_heaven-2-5.jpeg
│ ├── stairway_to_heaven-2-6.jpeg
│ ├── stairway_to_heaven-2-7.jpeg
│ ├── stairway_to_heaven-2-8.jpeg
│ ├── stairway_to_heaven-2-9.jpeg
│ ├── stairway_to_heaven-3-0.jpeg
│ ├── stairway_to_heaven-3-10.jpeg
│ ├── stairway_to_heaven-3-11.jpeg
│ ├── stairway_to_heaven-3-12.jpeg
│ ├── stairway_to_heaven-3-13.jpeg
│ ├── stairway_to_heaven-3-14.jpeg
│ ├── stairway_to_heaven-3-1.jpeg
│ ├── stairway_to_heaven-3-2.jpeg
│ ├── stairway_to_heaven-3-3.jpeg
│ ├── stairway_to_heaven-3-4.jpeg
│ ├── stairway_to_heaven-3-5.jpeg
│ ├── stairway_to_heaven-3-6.jpeg
│ ├── stairway_to_heaven-3-7.jpeg
│ ├── stairway_to_heaven-3-8.jpeg
│ ├── stairway_to_heaven-3-9.jpeg
│ ├── stairway_to_heaven-4-0.jpeg
│ ├── stairway_to_heaven-4-10.jpeg
│ ├── stairway_to_heaven-4-11.jpeg
│ ├── stairway_to_heaven-4-12.jpeg
│ ├── stairway_to_heaven-4-13.jpeg
│ ├── stairway_to_heaven-4-14.jpeg
│ ├── stairway_to_heaven-4-1.jpeg
│ ├── stairway_to_heaven-4-2.jpeg
│ ├── stairway_to_heaven-4-3.jpeg
│ ├── stairway_to_heaven-4-4.jpeg
│ ├── stairway_to_heaven-4-5.jpeg
│ ├── stairway_to_heaven-4-6.jpeg
│ ├── stairway_to_heaven-4-7.jpeg
│ ├── stairway_to_heaven-4-8.jpeg
│ ├── stairway_to_heaven-4-9.jpeg
│ ├── stairway_to_heaven-5-0.jpeg
│ ├── stairway_to_heaven-5-10.jpeg
│ ├── stairway_to_heaven-5-11.jpeg
│ ├── stairway_to_heaven-5-12.jpeg
│ ├── stairway_to_heaven-5-13.jpeg
│ ├── stairway_to_heaven-5-14.jpeg
│ ├── stairway_to_heaven-5-1.jpeg
│ ├── stairway_to_heaven-5-2.jpeg
│ ├── stairway_to_heaven-5-3.jpeg
│ ├── stairway_to_heaven-5-4.jpeg
│ ├── stairway_to_heaven-5-5.jpeg
│ ├── stairway_to_heaven-5-6.jpeg
│ ├── stairway_to_heaven-5-7.jpeg
│ ├── stairway_to_heaven-5-8.jpeg
│ ├── stairway_to_heaven-5-9.jpeg
│ ├── stairway_to_heaven-6-0.jpeg
│ ├── stairway_to_heaven-6-10.jpeg
│ ├── stairway_to_heaven-6-11.jpeg
│ ├── stairway_to_heaven-6-12.jpeg
│ ├── stairway_to_heaven-6-13.jpeg
│ ├── stairway_to_heaven-6-14.jpeg
│ ├── stairway_to_heaven-6-1.jpeg
│ ├── stairway_to_heaven-6-2.jpeg
│ ├── stairway_to_heaven-6-3.jpeg
│ ├── stairway_to_heaven-6-4.jpeg
│ ├── stairway_to_heaven-6-5.jpeg
│ ├── stairway_to_heaven-6-6.jpeg
│ ├── stairway_to_heaven-6-7.jpeg
│ ├── stairway_to_heaven-6-8.jpeg
│ ├── stairway_to_heaven-6-9.jpeg
│ ├── stairway_to_heaven-7-0.jpeg
│ ├── stairway_to_heaven-7-10.jpeg
│ ├── stairway_to_heaven-7-11.jpeg
│ ├── stairway_to_heaven-7-12.jpeg
│ ├── stairway_to_heaven-7-13.jpeg
│ ├── stairway_to_heaven-7-14.jpeg
│ ├── stairway_to_heaven-7-1.jpeg
│ ├── stairway_to_heaven-7-2.jpeg
│ ├── stairway_to_heaven-7-3.jpeg
│ ├── stairway_to_heaven-7-4.jpeg
│ ├── stairway_to_heaven-7-5.jpeg
│ ├── stairway_to_heaven-7-6.jpeg
│ ├── stairway_to_heaven-7-7.jpeg
│ ├── stairway_to_heaven-7-8.jpeg
│ ├── stairway_to_heaven-7-9.jpeg
│ ├── stairway_to_heaven-8-0.jpeg
│ ├── stairway_to_heaven-8-10.jpeg
│ ├── stairway_to_heaven-8-11.jpeg
│ ├── stairway_to_heaven-8-12.jpeg
│ ├── stairway_to_heaven-8-13.jpeg
│ ├── stairway_to_heaven-8-14.jpeg
│ ├── stairway_to_heaven-8-1.jpeg
│ ├── stairway_to_heaven-8-2.jpeg
│ ├── stairway_to_heaven-8-3.jpeg
│ ├── stairway_to_heaven-8-4.jpeg
│ ├── stairway_to_heaven-8-5.jpeg
│ ├── stairway_to_heaven-8-6.jpeg
│ ├── stairway_to_heaven-8-7.jpeg
│ ├── stairway_to_heaven-8-8.jpeg
│ ├── stairway_to_heaven-8-9.jpeg
│ ├── stairway_to_heaven-9-0.jpeg
│ ├── stairway_to_heaven-9-10.jpeg
│ ├── stairway_to_heaven-9-11.jpeg
│ ├── stairway_to_heaven-9-12.jpeg
│ ├── stairway_to_heaven-9-13.jpeg
│ ├── stairway_to_heaven-9-14.jpeg
│ ├── stairway_to_heaven-9-1.jpeg
│ ├── stairway_to_heaven-9-2.jpeg
│ ├── stairway_to_heaven-9-3.jpeg
│ ├── stairway_to_heaven-9-4.jpeg
│ ├── stairway_to_heaven-9-5.jpeg
│ ├── stairway_to_heaven-9-6.jpeg
│ ├── stairway_to_heaven-9-7.jpeg
│ ├── stairway_to_heaven-9-8.jpeg
│ └── stairway_to_heaven-9-9.jpeg
├── jpms-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ ├── io
│ │ │ └── vertx
│ │ │ └── example
│ │ │ └── jpms
│ │ │ ├── http2
│ │ │ │ └── Server.java
│ │ │ ├── sqlclient
│ │ │ │ └── Client.java
│ │ │ └── web
│ │ │ └── Server.java
│ │ └── module-info.java
│ └── resources
│ └── io
│ └── vertx
│ └── example
│ └── jpms
│ └── server-keystore.jks
├── junit5-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ ├── main
│ │ └── java
│ │ └── hello
│ │ └── SampleVerticle.java
│ └── test
│ └── java
│ └── hello
│ └── SampleVerticleTest.java
├── kafka-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── kafka
│ │ └── dashboard
│ │ ├── DashboardVerticle.java
│ │ ├── MainVerticle.java
│ │ └── MetricsVerticle.java
│ └── resources
│ └── webroot
│ ├── charts.js
│ ├── highcharts.js
│ ├── index.html
│ ├── jquery-1.11.2.min.js
│ ├── jquery.min.js
│ ├── sockjs.min.js
│ ├── standalone-framework.js
│ └── vertxbus.js
├── kotlin-examples
│ ├── coroutines
│ │ ├── pom.xml
│ │ ├── README.md
│ │ └── src
│ │ └── main
│ │ └── kotlin
│ │ └── movierating
│ │ ├── App.kt
│ │ ├── main.kt
│ │ └── utils.kt
│ └── README.adoc
├── LICENSE.txt
├── mail-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── mail
│ │ ├── LocalSmtpServer.java
│ │ ├── MailHeaders.java
│ │ ├── MailImages.java
│ │ ├── MailLocalhost.java
│ │ ├── MailLogin.java
│ │ └── MyMessageListener.java
│ └── resources
│ └── io
│ └── vertx
│ └── example
│ └── mail
│ └── logo-white-big.png
├── metrics-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── metrics
│ │ └── dashboard
│ │ └── Dashboard.java
│ └── resources
│ └── webroot
│ └── index.html
├── micrometer-metrics-examples
│ ├── grafana
│ │ ├── eventbus-metrics.png
│ │ ├── http-server-metrics.png
│ │ ├── Vertx-InfluxDB.json
│ │ └── Vertx-Prometheus.json
│ ├── pom.xml
│ ├── prometheus
│ │ └── prometheus.yml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── micrometer
│ ├── influxdb
│ │ └── Main.java
│ ├── jmx
│ │ └── Main.java
│ ├── prometheus
│ │ ├── Main.java
│ │ └── MainWithBoundPrometheus.java
│ └── verticles
│ ├── EventbusConsumer.java
│ ├── EventbusProducer.java
│ ├── Greetings.java
│ ├── SimpleWebServer.java
│ └── WebServerForBoundPrometheus.java
├── mongo-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── examples
│ └── mongo
│ └── MongoClientVerticle.java
├── mqtt-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── mqtt
│ │ ├── app
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── simple
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ └── ssl
│ │ ├── Client.java
│ │ └── Server.java
│ └── resources
│ └── io
│ └── vertx
│ └── example
│ └── mqtt
│ └── ssl
│ ├── server-cert.pem
│ └── server-key.pem
├── opentracing-examples
│ ├── jaeger.png
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ ├── opentracing
│ │ │ ├── Gateway.java
│ │ │ ├── HelloService.java
│ │ │ ├── JokeService.java
│ │ │ └── OpentracingExample.java
│ │ └── tracing
│ │ ├── ChuckNorrisJokesVerticle.java
│ │ ├── GatewayVerticle.java
│ │ └── HelloVerticle.java
│ └── resources
│ └── jokes.json
├── pom.xml
├── README.adoc
├── redis-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── examples
│ └── redis
│ └── RedisClientVerticle.java
├── rxjava-2-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── generated
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── reactivex
│ │ └── services
│ │ └── serviceproxy
│ │ ├── reactivex
│ │ │ └── SomeDatabaseService.java
│ │ ├── SomeDatabaseServiceVertxEBProxy.java
│ │ └── SomeDatabaseServiceVertxProxyHandler.java
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── reactivex
│ │ ├── database
│ │ │ ├── mongo
│ │ │ │ └── Client.java
│ │ │ └── sqlclient
│ │ │ ├── Client.java
│ │ │ ├── Streaming.java
│ │ │ └── Transaction.java
│ │ ├── eventbus
│ │ │ ├── pingpong
│ │ │ │ └── PingPong.java
│ │ │ ├── pubsub
│ │ │ │ ├── Receiver.java
│ │ │ │ └── Sender.java
│ │ │ └── zipreplies
│ │ │ ├── Receiver.java
│ │ │ └── Sender.java
│ │ ├── http
│ │ │ ├── client
│ │ │ │ ├── reduce
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ ├── simple
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ ├── unmarshalling
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ └── zip
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── server
│ │ │ └── echo
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── net
│ │ │ └── greeter
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── scheduler
│ │ │ ├── blocking
│ │ │ │ └── Scheduled.java
│ │ │ └── interval
│ │ │ └── Periodic.java
│ │ ├── services
│ │ │ └── serviceproxy
│ │ │ ├── impl
│ │ │ │ └── SomeDatabaseServiceImpl.java
│ │ │ ├── package-info.java
│ │ │ ├── ServiceConsumerVerticle.java
│ │ │ ├── SomeDatabaseService.java
│ │ │ └── SomeDatabaseServiceVerticle.java
│ │ └── web
│ │ ├── client
│ │ │ ├── simple
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── unmarshalling
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── zip
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── helloworld
│ │ │ └── Server.java
│ │ └── realtime
│ │ └── Server.java
│ └── resources
│ ├── server-keystore.jks
│ └── webroot
│ └── index.html
├── rxjava-3-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── generated
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── rxjava3
│ │ └── services
│ │ └── serviceproxy
│ │ ├── rxjava3
│ │ │ └── SomeDatabaseService.java
│ │ ├── SomeDatabaseServiceVertxEBProxy.java
│ │ └── SomeDatabaseServiceVertxProxyHandler.java
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── rxjava3
│ │ ├── database
│ │ │ ├── mongo
│ │ │ │ └── Client.java
│ │ │ └── sqlclient
│ │ │ ├── Client.java
│ │ │ └── Transaction.java
│ │ ├── eventbus
│ │ │ ├── pingpong
│ │ │ │ └── PingPong.java
│ │ │ ├── pubsub
│ │ │ │ ├── Receiver.java
│ │ │ │ └── Sender.java
│ │ │ └── zipreplies
│ │ │ ├── Receiver.java
│ │ │ └── Sender.java
│ │ ├── http
│ │ │ ├── client
│ │ │ │ ├── reduce
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ ├── simple
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ ├── unmarshalling
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ └── zip
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── server
│ │ │ └── echo
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── net
│ │ │ └── greeter
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── scheduler
│ │ │ ├── blocking
│ │ │ │ └── Scheduled.java
│ │ │ └── interval
│ │ │ └── Periodic.java
│ │ ├── services
│ │ │ └── serviceproxy
│ │ │ ├── impl
│ │ │ │ └── SomeDatabaseServiceImpl.java
│ │ │ ├── package-info.java
│ │ │ ├── ServiceConsumerVerticle.java
│ │ │ ├── SomeDatabaseService.java
│ │ │ └── SomeDatabaseServiceVerticle.java
│ │ └── web
│ │ ├── client
│ │ │ ├── simple
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── unmarshalling
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── zip
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── helloworld
│ │ │ └── Server.java
│ │ └── realtime
│ │ └── Server.java
│ └── resources
│ ├── server-keystore.jks
│ └── webroot
│ └── index.html
├── service-discovery-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── service
│ └── discovery
│ └── ServiceDiscoveryVerticle.java
├── service-proxy-examples
│ ├── pom.xml
│ ├── README.adoc
│ ├── service-consumer
│ │ ├── pom.xml
│ │ └── src
│ │ └── main
│ │ └── java
│ │ └── io
│ │ └── vertx
│ │ └── examples
│ │ └── service
│ │ └── consumer
│ │ ├── ConsumerVerticle.java
│ │ └── Failures.java
│ ├── service-provider
│ │ ├── node-client
│ │ │ ├── index.js
│ │ │ ├── package.json
│ │ │ └── package-lock.json
│ │ ├── pom.xml
│ │ ├── README.md
│ │ └── src
│ │ └── main
│ │ ├── generated
│ │ │ └── io
│ │ │ └── vertx
│ │ │ └── examples
│ │ │ └── service
│ │ │ ├── ProcessorServiceVertxEBProxy.java
│ │ │ ├── ProcessorServiceVertxProxyHandler.java
│ │ │ └── rxjava3
│ │ │ └── ProcessorService.java
│ │ ├── java
│ │ │ └── io
│ │ │ └── vertx
│ │ │ └── examples
│ │ │ └── service
│ │ │ ├── impl
│ │ │ │ └── ProcessorServiceImpl.java
│ │ │ ├── package-info.java
│ │ │ ├── ProcessorService.java
│ │ │ └── ProcessorServiceVerticle.java
│ │ └── resources
│ │ └── webroot
│ │ ├── index.html
│ │ └── processor_service-proxy.js
│ └── sockjs-proxies
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── generated
│ │ ├── io
│ │ │ └── vertx
│ │ │ └── example
│ │ │ └── web
│ │ │ └── proxies
│ │ │ ├── MyServiceVertxEBProxy.java
│ │ │ └── MyServiceVertxProxyHandler.java
│ │ └── vertx-sockjs-proxy-example-js
│ │ ├── my_service-proxy.d.ts
│ │ └── my_service-proxy.js
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── web
│ │ └── proxies
│ │ ├── MyServiceImpl.java
│ │ ├── MyService.java
│ │ ├── package-info.java
│ │ └── Server.java
│ └── resources
│ ├── client
│ │ ├── main.ts
│ │ └── my_service-proxy.ts
│ ├── package.json
│ ├── package-lock.json
│ ├── tsconfig.json
│ ├── webpack.config.js
│ └── webroot
│ └── index.html
├── shell-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── shell
│ │ ├── deploy_service_http
│ │ │ └── DeployShell.java
│ │ ├── deploy_service_ssh
│ │ │ └── DeployShell.java
│ │ ├── deploy_service_telnet
│ │ │ └── DeployShell.java
│ │ ├── echokeyboard
│ │ │ └── EchoKeyboardCommand.java
│ │ ├── helloworld
│ │ │ └── HelloWorldCommand.java
│ │ ├── prompt
│ │ │ └── PromptCommand.java
│ │ ├── run_service_http
│ │ │ └── RunShell.java
│ │ ├── run_service_ssh
│ │ │ └── RunShell.java
│ │ ├── run_service_telnet
│ │ │ └── RunShell.java
│ │ ├── starwars
│ │ │ └── StarwarsCommand.java
│ │ ├── termcast
│ │ │ ├── ScreenCaster.java
│ │ │ └── TermCast.java
│ │ ├── top
│ │ │ └── TopCommand.java
│ │ └── wget
│ │ └── WgetCommand.java
│ └── resources
│ └── io
│ └── vertx
│ └── example
│ └── shell
│ ├── deploy_service_http
│ │ └── auth.properties
│ ├── deploy_service_ssh
│ │ ├── auth.properties
│ │ └── keystore.jks
│ ├── run_service_http
│ │ └── auth.properties
│ └── run_service_ssh
│ ├── auth.properties
│ └── keystore.jks
├── spring-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── spring-verticle-factory
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── examples
│ └── spring
│ └── verticlefactory
│ ├── ExampleApplication.java
│ ├── Greeter.java
│ ├── GreetingVerticle.java
│ └── SpringVerticleFactory.java
├── sql-client-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── sqlclient
│ ├── query_params
│ │ └── SqlClientExample.java
│ ├── simple
│ │ └── SqlClientExample.java
│ ├── streaming
│ │ └── SqlClientExample.java
│ ├── template
│ │ └── SqlClientExample.java
│ ├── template_mapping
│ │ ├── package-info.java
│ │ ├── SqlClientExample.java
│ │ └── User.java
│ ├── transaction
│ │ └── SqlClientExample.java
│ └── transaction_rollback
│ └── SqlClientExample.java
├── unit-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ ├── main
│ │ └── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── unit
│ │ ├── HelloVerticle.java
│ │ └── SomeVerticle.java
│ └── test
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── unit
│ └── test
│ ├── JUnitAndAssertJTest.java
│ ├── JUnitAndHamcrestTest.java
│ ├── JUnitVerticleTest.java
│ ├── MyJUnitTest.java
│ ├── ParameterizedTest.java
│ ├── RunOnContextTest.java
│ └── VertxUnitTest.java
├── virtual-threads-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── virtualthreads
│ ├── HttpClientExample.java
│ ├── MovieRatingService.java
│ ├── SqlClientExample.java
│ └── WebClientExample.java
├── web-api-service-example
│ ├── pom.xml
│ ├── README.md
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── examples
│ │ └── webapiservice
│ │ ├── models
│ │ │ ├── package-info.java
│ │ │ └── Transaction.java
│ │ ├── persistence
│ │ │ ├── impl
│ │ │ │ └── TransactionPersistenceImpl.java
│ │ │ └── TransactionPersistence.java
│ │ ├── services
│ │ │ ├── impl
│ │ │ │ └── TransactionsManagerServiceImpl.java
│ │ │ ├── package-info.java
│ │ │ └── TransactionsManagerService.java
│ │ └── WebApiServiceExampleMainVerticle.java
│ └── resources
│ ├── logback.xml
│ └── openapi.json
├── web-client-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── webclient
│ │ ├── https
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── oauth
│ │ │ └── TwitterOAuthExample.java
│ │ ├── queryparams
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── response
│ │ │ ├── jsonobject
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── jsonpojo
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── send
│ │ │ ├── formurlencoded
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── helloworld
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── jsonobject
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── jsonpojo
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── multipartform
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── stream
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ └── simple
│ │ ├── Client.java
│ │ └── Server.java
│ └── resources
│ ├── io
│ │ └── vertx
│ │ └── example
│ │ └── webclient
│ │ ├── https
│ │ │ ├── client-truststore.jks
│ │ │ └── server-keystore.jks
│ │ └── send
│ │ └── stream
│ │ └── upload.txt
│ └── vertx-default-jul-logging.properties
├── web-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── web
│ │ ├── angular_realtime
│ │ │ └── Server.java
│ │ ├── auth
│ │ │ └── Server.java
│ │ ├── authorisation
│ │ │ └── Server.java
│ │ ├── authsql
│ │ │ └── Server.java
│ │ ├── blockinghandler
│ │ │ └── Server.java
│ │ ├── chat
│ │ │ └── Server.java
│ │ ├── cookie
│ │ │ └── Server.java
│ │ ├── cors
│ │ │ └── Server.java
│ │ ├── custom_authorisation
│ │ │ └── Server.java
│ │ ├── form
│ │ │ └── Server.java
│ │ ├── grpc
│ │ │ └── helloworld
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── helloworld
│ │ │ └── Server.java
│ │ ├── http2
│ │ │ ├── Image.java
│ │ │ └── Server.java
│ │ ├── jwt
│ │ │ └── Server.java
│ │ ├── oauth2
│ │ │ └── Server.java
│ │ ├── openapi3
│ │ │ └── OpenAPI3Server.java
│ │ ├── openapi_router
│ │ │ ├── RequestValidationExample.java
│ │ │ └── ResponseValidationExample.java
│ │ ├── proxy
│ │ │ ├── Backend.java
│ │ │ └── Server.java
│ │ ├── react
│ │ │ └── Server.java
│ │ ├── realtime
│ │ │ └── Server.java
│ │ ├── rest
│ │ │ └── SimpleREST.java
│ │ ├── sessions
│ │ │ └── Server.java
│ │ ├── sqlclient
│ │ │ └── Server.java
│ │ ├── staticsite
│ │ │ └── Server.java
│ │ ├── templating
│ │ │ ├── freemarker
│ │ │ │ └── Server.java
│ │ │ ├── handlebars
│ │ │ │ └── Server.java
│ │ │ ├── mvel
│ │ │ │ └── Server.java
│ │ │ ├── pebble
│ │ │ │ └── Server.java
│ │ │ ├── rocker
│ │ │ │ └── Server.java
│ │ │ └── thymeleaf
│ │ │ └── Server.java
│ │ ├── upload
│ │ │ └── Server.java
│ │ └── validation
│ │ └── ValidationExampleServer.java
│ ├── proto
│ │ └── helloworld.proto
│ └── resources
│ ├── coin.png
│ ├── io
│ │ └── vertx
│ │ └── example
│ │ └── web
│ │ ├── angular_realtime
│ │ │ └── webroot
│ │ │ ├── css
│ │ │ │ ├── bootstrap.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── patterns.less
│ │ │ │ ├── README
│ │ │ │ ├── reset.less
│ │ │ │ ├── scaffolding.less
│ │ │ │ ├── tables.less
│ │ │ │ ├── type.less
│ │ │ │ └── variables.less
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ └── client_app.js
│ │ │ └── js3rdparty
│ │ │ ├── angular-1.0.1.js
│ │ │ ├── bootstrap-alerts.js
│ │ │ ├── bootstrap-tabs.js
│ │ │ ├── jquery-1.7.1.min.js
│ │ │ ├── less-1.2.1.min.js
│ │ │ └── README
│ │ ├── auth
│ │ │ ├── private
│ │ │ │ └── private_page.html
│ │ │ └── webroot
│ │ │ ├── index.html
│ │ │ ├── loginpage.html
│ │ │ └── page1.html
│ │ ├── authorisation
│ │ │ ├── keystore.jceks
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── authsql
│ │ │ ├── private
│ │ │ │ └── private_page.html
│ │ │ └── webroot
│ │ │ ├── index.html
│ │ │ ├── loginpage.html
│ │ │ └── page1.html
│ │ ├── chat
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── cookie
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── cors
│ │ │ └── webroot
│ │ │ ├── index.html
│ │ │ ├── nopreflight.html
│ │ │ └── preflight.html
│ │ ├── custom_authorisation
│ │ │ ├── keystore.jceks
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── jwt
│ │ │ ├── keystore.jceks
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── oauth2
│ │ │ └── views
│ │ │ ├── advanced.hbs
│ │ │ └── index.hbs
│ │ ├── openapi_router
│ │ │ └── petstore.json
│ │ ├── react
│ │ │ ├── app-client.js
│ │ │ ├── package.json
│ │ │ ├── webpack.config.js
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── realtime
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── staticsite
│ │ │ └── webroot
│ │ │ ├── index.html
│ │ │ ├── page1.html
│ │ │ └── page2.html
│ │ └── templating
│ │ ├── freemarker
│ │ │ └── templates
│ │ │ └── index.ftl
│ │ ├── handlebars
│ │ │ └── templates
│ │ │ └── index.hbs
│ │ ├── mvel
│ │ │ ├── templates
│ │ │ │ └── mytempl.templ
│ │ │ └── webroot
│ │ │ ├── index.html
│ │ │ ├── page1.html
│ │ │ └── page2.html
│ │ ├── pebble
│ │ │ └── templates
│ │ │ └── index.peb
│ │ ├── rocker
│ │ │ └── templates
│ │ │ ├── index.rocker.html
│ │ │ └── main.rocker.html
│ │ └── thymeleaf
│ │ └── templates
│ │ └── index.html
│ ├── petstore.yaml
│ ├── tls
│ │ ├── server-cert.pem
│ │ └── server-key.pem
│ ├── vertx-default-jul-logging.properties
│ └── vertx-users.properties
├── web-graphql-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── web
│ │ └── graphql
│ │ ├── Client.java
│ │ ├── Link.java
│ │ ├── Server.java
│ │ └── User.java
│ └── resources
│ └── links.graphqls
└── zipkin-examples
├── pom.xml
├── README.adoc
├── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ ├── tracing
│ │ │ ├── ChuckNorrisJokesVerticle.java
│ │ │ ├── GatewayVerticle.java
│ │ │ └── HelloVerticle.java
│ │ └── zipkin
│ │ ├── Gateway.java
│ │ ├── HelloService.java
│ │ ├── JokeService.java
│ │ └── ZipkinExample.java
│ └── resources
│ └── jokes.json
└── zipkin.png
661 directories, 825 files
vertx-examples源码下载
这是一个包含各种示例的源码下载站点,您可以轻松地运行和使用Vert.x的各种功能和服务。
【实例截图】
【核心代码】
文件清单
└── vertx-examples-b6194db5b5e7eac3173f8c968c9ecac8e4a567f9
├── amqp-proton-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── proton
│ ├── client
│ │ ├── Receiver.java
│ │ ├── ReconnectReceiver.java
│ │ ├── ReconnectSender.java
│ │ └── Sender.java
│ └── server
│ └── HelloServer.java
├── app.json
├── camel-bridge-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── camel
│ │ ├── feed
│ │ │ ├── FeedExample.java
│ │ │ └── ReleasePostFilter.java
│ │ └── rmi
│ │ ├── HelloServiceImpl.java
│ │ ├── HelloService.java
│ │ └── RMIExample.java
│ └── resources
│ ├── META-INF
│ │ └── spring
│ │ └── camelContext.xml
│ └── myapp.properties
├── cassandra-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── cassandra
│ ├── prepared
│ │ └── PreparedExample.java
│ ├── simple
│ │ └── SimpleExample.java
│ └── streaming
│ └── StreamingExample.java
├── circuit-breaker-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── circuit
│ └── breaker
│ ├── Client.java
│ └── Server.java
├── consul-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── examples
│ └── consul
│ └── ConsulClientVerticle.java
├── core-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── core
│ │ ├── embed
│ │ │ └── EmbeddedServer.java
│ │ ├── eventbus
│ │ │ ├── messagecodec
│ │ │ │ ├── ClusterReceiver.java
│ │ │ │ ├── LocalReceiver.java
│ │ │ │ ├── Sender.java
│ │ │ │ └── util
│ │ │ │ ├── CustomMessageCodec.java
│ │ │ │ └── CustomMessage.java
│ │ │ ├── pointtopoint
│ │ │ │ ├── Receiver.java
│ │ │ │ └── Sender.java
│ │ │ ├── pubsub
│ │ │ │ ├── Receiver.java
│ │ │ │ └── Sender.java
│ │ │ └── ssl
│ │ │ ├── Receiver.java
│ │ │ └── Sender.java
│ │ ├── execblocking
│ │ │ ├── ExecBlockingDedicatedPoolExample.java
│ │ │ └── ExecBlockingExample.java
│ │ ├── future
│ │ │ └── ComposeExample.java
│ │ ├── http
│ │ │ ├── https
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── proxy
│ │ │ │ ├── Client.java
│ │ │ │ ├── Proxy.java
│ │ │ │ └── Server.java
│ │ │ ├── proxyconnect
│ │ │ │ ├── Client.java
│ │ │ │ ├── Proxy.java
│ │ │ │ └── Server.java
│ │ │ ├── sendfile
│ │ │ │ └── SendFile.java
│ │ │ ├── sharing
│ │ │ │ ├── Client.java
│ │ │ │ ├── HttpServerVerticle.java
│ │ │ │ └── Server.java
│ │ │ ├── simple
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── simpleform
│ │ │ │ └── SimpleFormServer.java
│ │ │ ├── simpleformupload
│ │ │ │ └── SimpleFormUploadServer.java
│ │ │ ├── upload
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── websockets
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── http2
│ │ │ ├── customframes
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── h2c
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── push
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── simple
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── jsonstreaming
│ │ │ ├── DataPoint.java
│ │ │ └── JsonStreamingExample.java
│ │ ├── net
│ │ │ ├── echo
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── echossl
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── greeter
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── stream
│ │ │ ├── Batch.java
│ │ │ ├── BatchStream.java
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ └── verticle
│ │ ├── asyncstart
│ │ │ ├── DeployExample.java
│ │ │ └── OtherVerticle.java
│ │ ├── deploy
│ │ │ ├── DeployExample.java
│ │ │ └── OtherVerticle.java
│ │ └── worker
│ │ ├── MainVerticle.java
│ │ └── WorkerVerticle.java
│ └── resources
│ ├── io
│ │ └── vertx
│ │ └── example
│ │ └── core
│ │ ├── eventbus
│ │ │ └── ssl
│ │ │ └── keystore.jks
│ │ ├── http
│ │ │ ├── https
│ │ │ │ └── server-keystore.jks
│ │ │ ├── sendfile
│ │ │ │ ├── index.html
│ │ │ │ ├── page1.html
│ │ │ │ └── page2.html
│ │ │ ├── simpleform
│ │ │ │ └── index.html
│ │ │ ├── simpleformupload
│ │ │ │ └── index.html
│ │ │ ├── upload
│ │ │ │ └── upload.txt
│ │ │ └── websockets
│ │ │ └── ws.html
│ │ ├── http2
│ │ │ ├── customframes
│ │ │ │ ├── server-cert.pem
│ │ │ │ └── server-key.pem
│ │ │ ├── push
│ │ │ │ ├── index.html
│ │ │ │ ├── script.js
│ │ │ │ ├── server-cert.pem
│ │ │ │ └── server-key.pem
│ │ │ └── simple
│ │ │ ├── server-cert.pem
│ │ │ └── server-key.pem
│ │ └── net
│ │ └── echossl
│ │ └── server-keystore.jks
│ └── large.json
├── grpc-examples
│ ├── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── grpc
│ │ ├── consumer
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ ├── conversation
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ ├── empty
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ ├── helloworld
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ ├── pingpong
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ ├── producer
│ │ │ ├── Client.java
│ │ │ ├── ClientWithStub.java
│ │ │ ├── Server.java
│ │ │ └── ServerWithStub.java
│ │ └── ssl
│ │ ├── Client.java
│ │ ├── ClientWithStub.java
│ │ ├── Server.java
│ │ └── ServerWithStub.java
│ ├── proto
│ │ ├── empty.proto
│ │ ├── helloworld.proto
│ │ ├── messages.proto
│ │ └── service-definitions.proto
│ └── resources
│ ├── route_guide_db.json
│ └── tls
│ ├── client-truststore.jks
│ └── server-keystore.jks
├── http2-showcase
│ ├── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── README.md
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── io
│ │ │ └── vertx
│ │ │ └── examples
│ │ │ └── http2
│ │ │ ├── DisplayedLatency.java
│ │ │ └── Http2ServerVerticle.java
│ │ └── resources
│ │ └── tls
│ │ ├── server-cert.pem
│ │ ├── server-key.pem
│ │ └── server-keystore.jks
│ ├── templates
│ │ └── image.hbs
│ └── webroot
│ └── img
│ ├── stairway_to_heaven-0-0.jpeg
│ ├── stairway_to_heaven-0-10.jpeg
│ ├── stairway_to_heaven-0-11.jpeg
│ ├── stairway_to_heaven-0-12.jpeg
│ ├── stairway_to_heaven-0-13.jpeg
│ ├── stairway_to_heaven-0-14.jpeg
│ ├── stairway_to_heaven-0-1.jpeg
│ ├── stairway_to_heaven-0-2.jpeg
│ ├── stairway_to_heaven-0-3.jpeg
│ ├── stairway_to_heaven-0-4.jpeg
│ ├── stairway_to_heaven-0-5.jpeg
│ ├── stairway_to_heaven-0-6.jpeg
│ ├── stairway_to_heaven-0-7.jpeg
│ ├── stairway_to_heaven-0-8.jpeg
│ ├── stairway_to_heaven-0-9.jpeg
│ ├── stairway_to_heaven-10-0.jpeg
│ ├── stairway_to_heaven-10-10.jpeg
│ ├── stairway_to_heaven-10-11.jpeg
│ ├── stairway_to_heaven-10-12.jpeg
│ ├── stairway_to_heaven-10-13.jpeg
│ ├── stairway_to_heaven-10-14.jpeg
│ ├── stairway_to_heaven-10-1.jpeg
│ ├── stairway_to_heaven-10-2.jpeg
│ ├── stairway_to_heaven-10-3.jpeg
│ ├── stairway_to_heaven-10-4.jpeg
│ ├── stairway_to_heaven-10-5.jpeg
│ ├── stairway_to_heaven-10-6.jpeg
│ ├── stairway_to_heaven-10-7.jpeg
│ ├── stairway_to_heaven-10-8.jpeg
│ ├── stairway_to_heaven-10-9.jpeg
│ ├── stairway_to_heaven-1-0.jpeg
│ ├── stairway_to_heaven-1-10.jpeg
│ ├── stairway_to_heaven-11-0.jpeg
│ ├── stairway_to_heaven-11-10.jpeg
│ ├── stairway_to_heaven-11-11.jpeg
│ ├── stairway_to_heaven-11-12.jpeg
│ ├── stairway_to_heaven-11-13.jpeg
│ ├── stairway_to_heaven-11-14.jpeg
│ ├── stairway_to_heaven-1-11.jpeg
│ ├── stairway_to_heaven-11-1.jpeg
│ ├── stairway_to_heaven-1-12.jpeg
│ ├── stairway_to_heaven-11-2.jpeg
│ ├── stairway_to_heaven-1-13.jpeg
│ ├── stairway_to_heaven-11-3.jpeg
│ ├── stairway_to_heaven-1-14.jpeg
│ ├── stairway_to_heaven-11-4.jpeg
│ ├── stairway_to_heaven-11-5.jpeg
│ ├── stairway_to_heaven-11-6.jpeg
│ ├── stairway_to_heaven-11-7.jpeg
│ ├── stairway_to_heaven-11-8.jpeg
│ ├── stairway_to_heaven-11-9.jpeg
│ ├── stairway_to_heaven-1-1.jpeg
│ ├── stairway_to_heaven-12-0.jpeg
│ ├── stairway_to_heaven-12-10.jpeg
│ ├── stairway_to_heaven-12-11.jpeg
│ ├── stairway_to_heaven-12-12.jpeg
│ ├── stairway_to_heaven-12-13.jpeg
│ ├── stairway_to_heaven-12-14.jpeg
│ ├── stairway_to_heaven-12-1.jpeg
│ ├── stairway_to_heaven-12-2.jpeg
│ ├── stairway_to_heaven-12-3.jpeg
│ ├── stairway_to_heaven-12-4.jpeg
│ ├── stairway_to_heaven-12-5.jpeg
│ ├── stairway_to_heaven-12-6.jpeg
│ ├── stairway_to_heaven-12-7.jpeg
│ ├── stairway_to_heaven-12-8.jpeg
│ ├── stairway_to_heaven-12-9.jpeg
│ ├── stairway_to_heaven-1-2.jpeg
│ ├── stairway_to_heaven-13-0.jpeg
│ ├── stairway_to_heaven-13-10.jpeg
│ ├── stairway_to_heaven-13-11.jpeg
│ ├── stairway_to_heaven-13-12.jpeg
│ ├── stairway_to_heaven-13-13.jpeg
│ ├── stairway_to_heaven-13-14.jpeg
│ ├── stairway_to_heaven-13-1.jpeg
│ ├── stairway_to_heaven-13-2.jpeg
│ ├── stairway_to_heaven-13-3.jpeg
│ ├── stairway_to_heaven-13-4.jpeg
│ ├── stairway_to_heaven-13-5.jpeg
│ ├── stairway_to_heaven-13-6.jpeg
│ ├── stairway_to_heaven-13-7.jpeg
│ ├── stairway_to_heaven-13-8.jpeg
│ ├── stairway_to_heaven-13-9.jpeg
│ ├── stairway_to_heaven-1-3.jpeg
│ ├── stairway_to_heaven-14-0.jpeg
│ ├── stairway_to_heaven-14-10.jpeg
│ ├── stairway_to_heaven-14-11.jpeg
│ ├── stairway_to_heaven-14-12.jpeg
│ ├── stairway_to_heaven-14-13.jpeg
│ ├── stairway_to_heaven-14-14.jpeg
│ ├── stairway_to_heaven-14-1.jpeg
│ ├── stairway_to_heaven-14-2.jpeg
│ ├── stairway_to_heaven-14-3.jpeg
│ ├── stairway_to_heaven-14-4.jpeg
│ ├── stairway_to_heaven-14-5.jpeg
│ ├── stairway_to_heaven-14-6.jpeg
│ ├── stairway_to_heaven-14-7.jpeg
│ ├── stairway_to_heaven-14-8.jpeg
│ ├── stairway_to_heaven-14-9.jpeg
│ ├── stairway_to_heaven-1-4.jpeg
│ ├── stairway_to_heaven-1-5.jpeg
│ ├── stairway_to_heaven-1-6.jpeg
│ ├── stairway_to_heaven-1-7.jpeg
│ ├── stairway_to_heaven-1-8.jpeg
│ ├── stairway_to_heaven-1-9.jpeg
│ ├── stairway_to_heaven-2-0.jpeg
│ ├── stairway_to_heaven-2-10.jpeg
│ ├── stairway_to_heaven-2-11.jpeg
│ ├── stairway_to_heaven-2-12.jpeg
│ ├── stairway_to_heaven-2-13.jpeg
│ ├── stairway_to_heaven-2-14.jpeg
│ ├── stairway_to_heaven-2-1.jpeg
│ ├── stairway_to_heaven-2-2.jpeg
│ ├── stairway_to_heaven-2-3.jpeg
│ ├── stairway_to_heaven-2-4.jpeg
│ ├── stairway_to_heaven-2-5.jpeg
│ ├── stairway_to_heaven-2-6.jpeg
│ ├── stairway_to_heaven-2-7.jpeg
│ ├── stairway_to_heaven-2-8.jpeg
│ ├── stairway_to_heaven-2-9.jpeg
│ ├── stairway_to_heaven-3-0.jpeg
│ ├── stairway_to_heaven-3-10.jpeg
│ ├── stairway_to_heaven-3-11.jpeg
│ ├── stairway_to_heaven-3-12.jpeg
│ ├── stairway_to_heaven-3-13.jpeg
│ ├── stairway_to_heaven-3-14.jpeg
│ ├── stairway_to_heaven-3-1.jpeg
│ ├── stairway_to_heaven-3-2.jpeg
│ ├── stairway_to_heaven-3-3.jpeg
│ ├── stairway_to_heaven-3-4.jpeg
│ ├── stairway_to_heaven-3-5.jpeg
│ ├── stairway_to_heaven-3-6.jpeg
│ ├── stairway_to_heaven-3-7.jpeg
│ ├── stairway_to_heaven-3-8.jpeg
│ ├── stairway_to_heaven-3-9.jpeg
│ ├── stairway_to_heaven-4-0.jpeg
│ ├── stairway_to_heaven-4-10.jpeg
│ ├── stairway_to_heaven-4-11.jpeg
│ ├── stairway_to_heaven-4-12.jpeg
│ ├── stairway_to_heaven-4-13.jpeg
│ ├── stairway_to_heaven-4-14.jpeg
│ ├── stairway_to_heaven-4-1.jpeg
│ ├── stairway_to_heaven-4-2.jpeg
│ ├── stairway_to_heaven-4-3.jpeg
│ ├── stairway_to_heaven-4-4.jpeg
│ ├── stairway_to_heaven-4-5.jpeg
│ ├── stairway_to_heaven-4-6.jpeg
│ ├── stairway_to_heaven-4-7.jpeg
│ ├── stairway_to_heaven-4-8.jpeg
│ ├── stairway_to_heaven-4-9.jpeg
│ ├── stairway_to_heaven-5-0.jpeg
│ ├── stairway_to_heaven-5-10.jpeg
│ ├── stairway_to_heaven-5-11.jpeg
│ ├── stairway_to_heaven-5-12.jpeg
│ ├── stairway_to_heaven-5-13.jpeg
│ ├── stairway_to_heaven-5-14.jpeg
│ ├── stairway_to_heaven-5-1.jpeg
│ ├── stairway_to_heaven-5-2.jpeg
│ ├── stairway_to_heaven-5-3.jpeg
│ ├── stairway_to_heaven-5-4.jpeg
│ ├── stairway_to_heaven-5-5.jpeg
│ ├── stairway_to_heaven-5-6.jpeg
│ ├── stairway_to_heaven-5-7.jpeg
│ ├── stairway_to_heaven-5-8.jpeg
│ ├── stairway_to_heaven-5-9.jpeg
│ ├── stairway_to_heaven-6-0.jpeg
│ ├── stairway_to_heaven-6-10.jpeg
│ ├── stairway_to_heaven-6-11.jpeg
│ ├── stairway_to_heaven-6-12.jpeg
│ ├── stairway_to_heaven-6-13.jpeg
│ ├── stairway_to_heaven-6-14.jpeg
│ ├── stairway_to_heaven-6-1.jpeg
│ ├── stairway_to_heaven-6-2.jpeg
│ ├── stairway_to_heaven-6-3.jpeg
│ ├── stairway_to_heaven-6-4.jpeg
│ ├── stairway_to_heaven-6-5.jpeg
│ ├── stairway_to_heaven-6-6.jpeg
│ ├── stairway_to_heaven-6-7.jpeg
│ ├── stairway_to_heaven-6-8.jpeg
│ ├── stairway_to_heaven-6-9.jpeg
│ ├── stairway_to_heaven-7-0.jpeg
│ ├── stairway_to_heaven-7-10.jpeg
│ ├── stairway_to_heaven-7-11.jpeg
│ ├── stairway_to_heaven-7-12.jpeg
│ ├── stairway_to_heaven-7-13.jpeg
│ ├── stairway_to_heaven-7-14.jpeg
│ ├── stairway_to_heaven-7-1.jpeg
│ ├── stairway_to_heaven-7-2.jpeg
│ ├── stairway_to_heaven-7-3.jpeg
│ ├── stairway_to_heaven-7-4.jpeg
│ ├── stairway_to_heaven-7-5.jpeg
│ ├── stairway_to_heaven-7-6.jpeg
│ ├── stairway_to_heaven-7-7.jpeg
│ ├── stairway_to_heaven-7-8.jpeg
│ ├── stairway_to_heaven-7-9.jpeg
│ ├── stairway_to_heaven-8-0.jpeg
│ ├── stairway_to_heaven-8-10.jpeg
│ ├── stairway_to_heaven-8-11.jpeg
│ ├── stairway_to_heaven-8-12.jpeg
│ ├── stairway_to_heaven-8-13.jpeg
│ ├── stairway_to_heaven-8-14.jpeg
│ ├── stairway_to_heaven-8-1.jpeg
│ ├── stairway_to_heaven-8-2.jpeg
│ ├── stairway_to_heaven-8-3.jpeg
│ ├── stairway_to_heaven-8-4.jpeg
│ ├── stairway_to_heaven-8-5.jpeg
│ ├── stairway_to_heaven-8-6.jpeg
│ ├── stairway_to_heaven-8-7.jpeg
│ ├── stairway_to_heaven-8-8.jpeg
│ ├── stairway_to_heaven-8-9.jpeg
│ ├── stairway_to_heaven-9-0.jpeg
│ ├── stairway_to_heaven-9-10.jpeg
│ ├── stairway_to_heaven-9-11.jpeg
│ ├── stairway_to_heaven-9-12.jpeg
│ ├── stairway_to_heaven-9-13.jpeg
│ ├── stairway_to_heaven-9-14.jpeg
│ ├── stairway_to_heaven-9-1.jpeg
│ ├── stairway_to_heaven-9-2.jpeg
│ ├── stairway_to_heaven-9-3.jpeg
│ ├── stairway_to_heaven-9-4.jpeg
│ ├── stairway_to_heaven-9-5.jpeg
│ ├── stairway_to_heaven-9-6.jpeg
│ ├── stairway_to_heaven-9-7.jpeg
│ ├── stairway_to_heaven-9-8.jpeg
│ └── stairway_to_heaven-9-9.jpeg
├── jpms-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ ├── io
│ │ │ └── vertx
│ │ │ └── example
│ │ │ └── jpms
│ │ │ ├── http2
│ │ │ │ └── Server.java
│ │ │ ├── sqlclient
│ │ │ │ └── Client.java
│ │ │ └── web
│ │ │ └── Server.java
│ │ └── module-info.java
│ └── resources
│ └── io
│ └── vertx
│ └── example
│ └── jpms
│ └── server-keystore.jks
├── junit5-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ ├── main
│ │ └── java
│ │ └── hello
│ │ └── SampleVerticle.java
│ └── test
│ └── java
│ └── hello
│ └── SampleVerticleTest.java
├── kafka-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── kafka
│ │ └── dashboard
│ │ ├── DashboardVerticle.java
│ │ ├── MainVerticle.java
│ │ └── MetricsVerticle.java
│ └── resources
│ └── webroot
│ ├── charts.js
│ ├── highcharts.js
│ ├── index.html
│ ├── jquery-1.11.2.min.js
│ ├── jquery.min.js
│ ├── sockjs.min.js
│ ├── standalone-framework.js
│ └── vertxbus.js
├── kotlin-examples
│ ├── coroutines
│ │ ├── pom.xml
│ │ ├── README.md
│ │ └── src
│ │ └── main
│ │ └── kotlin
│ │ └── movierating
│ │ ├── App.kt
│ │ ├── main.kt
│ │ └── utils.kt
│ └── README.adoc
├── LICENSE.txt
├── mail-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ ├── LocalSmtpServer.java
│ │ ├── MailHeaders.java
│ │ ├── MailImages.java
│ │ ├── MailLocalhost.java
│ │ ├── MailLogin.java
│ │ └── MyMessageListener.java
│ └── resources
│ └── io
│ └── vertx
│ └── example
│ └── logo-white-big.png
├── metrics-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── metrics
│ │ └── dashboard
│ │ └── Dashboard.java
│ └── resources
│ └── webroot
│ └── index.html
├── micrometer-metrics-examples
│ ├── grafana
│ │ ├── eventbus-metrics.png
│ │ ├── http-server-metrics.png
│ │ ├── Vertx-InfluxDB.json
│ │ └── Vertx-Prometheus.json
│ ├── pom.xml
│ ├── prometheus
│ │ └── prometheus.yml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── micrometer
│ ├── influxdb
│ │ └── Main.java
│ ├── jmx
│ │ └── Main.java
│ ├── prometheus
│ │ ├── Main.java
│ │ └── MainWithBoundPrometheus.java
│ └── verticles
│ ├── EventbusConsumer.java
│ ├── EventbusProducer.java
│ ├── Greetings.java
│ ├── SimpleWebServer.java
│ └── WebServerForBoundPrometheus.java
├── mongo-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── examples
│ └── mongo
│ └── MongoClientVerticle.java
├── mqtt-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── mqtt
│ │ ├── app
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── simple
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ └── ssl
│ │ ├── Client.java
│ │ └── Server.java
│ └── resources
│ └── io
│ └── vertx
│ └── example
│ └── mqtt
│ └── ssl
│ ├── server-cert.pem
│ └── server-key.pem
├── opentracing-examples
│ ├── jaeger.png
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ ├── opentracing
│ │ │ ├── Gateway.java
│ │ │ ├── HelloService.java
│ │ │ ├── JokeService.java
│ │ │ └── OpentracingExample.java
│ │ └── tracing
│ │ ├── ChuckNorrisJokesVerticle.java
│ │ ├── GatewayVerticle.java
│ │ └── HelloVerticle.java
│ └── resources
│ └── jokes.json
├── pom.xml
├── README.adoc
├── redis-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── examples
│ └── redis
│ └── RedisClientVerticle.java
├── rxjava-2-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── generated
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── reactivex
│ │ └── services
│ │ └── serviceproxy
│ │ ├── reactivex
│ │ │ └── SomeDatabaseService.java
│ │ ├── SomeDatabaseServiceVertxEBProxy.java
│ │ └── SomeDatabaseServiceVertxProxyHandler.java
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── reactivex
│ │ ├── database
│ │ │ ├── mongo
│ │ │ │ └── Client.java
│ │ │ └── sqlclient
│ │ │ ├── Client.java
│ │ │ ├── Streaming.java
│ │ │ └── Transaction.java
│ │ ├── eventbus
│ │ │ ├── pingpong
│ │ │ │ └── PingPong.java
│ │ │ ├── pubsub
│ │ │ │ ├── Receiver.java
│ │ │ │ └── Sender.java
│ │ │ └── zipreplies
│ │ │ ├── Receiver.java
│ │ │ └── Sender.java
│ │ ├── http
│ │ │ ├── client
│ │ │ │ ├── reduce
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ ├── simple
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ ├── unmarshalling
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ └── zip
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── server
│ │ │ └── echo
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── net
│ │ │ └── greeter
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── scheduler
│ │ │ ├── blocking
│ │ │ │ └── Scheduled.java
│ │ │ └── interval
│ │ │ └── Periodic.java
│ │ ├── services
│ │ │ └── serviceproxy
│ │ │ ├── impl
│ │ │ │ └── SomeDatabaseServiceImpl.java
│ │ │ ├── package-info.java
│ │ │ ├── ServiceConsumerVerticle.java
│ │ │ ├── SomeDatabaseService.java
│ │ │ └── SomeDatabaseServiceVerticle.java
│ │ └── web
│ │ ├── client
│ │ │ ├── simple
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── unmarshalling
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── zip
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── helloworld
│ │ │ └── Server.java
│ │ └── realtime
│ │ └── Server.java
│ └── resources
│ ├── server-keystore.jks
│ └── webroot
│ └── index.html
├── rxjava-3-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── generated
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── rxjava3
│ │ └── services
│ │ └── serviceproxy
│ │ ├── rxjava3
│ │ │ └── SomeDatabaseService.java
│ │ ├── SomeDatabaseServiceVertxEBProxy.java
│ │ └── SomeDatabaseServiceVertxProxyHandler.java
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── rxjava3
│ │ ├── database
│ │ │ ├── mongo
│ │ │ │ └── Client.java
│ │ │ └── sqlclient
│ │ │ ├── Client.java
│ │ │ └── Transaction.java
│ │ ├── eventbus
│ │ │ ├── pingpong
│ │ │ │ └── PingPong.java
│ │ │ ├── pubsub
│ │ │ │ ├── Receiver.java
│ │ │ │ └── Sender.java
│ │ │ └── zipreplies
│ │ │ ├── Receiver.java
│ │ │ └── Sender.java
│ │ ├── http
│ │ │ ├── client
│ │ │ │ ├── reduce
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ ├── simple
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ ├── unmarshalling
│ │ │ │ │ ├── Client.java
│ │ │ │ │ └── Server.java
│ │ │ │ └── zip
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── server
│ │ │ └── echo
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── net
│ │ │ └── greeter
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── scheduler
│ │ │ ├── blocking
│ │ │ │ └── Scheduled.java
│ │ │ └── interval
│ │ │ └── Periodic.java
│ │ ├── services
│ │ │ └── serviceproxy
│ │ │ ├── impl
│ │ │ │ └── SomeDatabaseServiceImpl.java
│ │ │ ├── package-info.java
│ │ │ ├── ServiceConsumerVerticle.java
│ │ │ ├── SomeDatabaseService.java
│ │ │ └── SomeDatabaseServiceVerticle.java
│ │ └── web
│ │ ├── client
│ │ │ ├── simple
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── unmarshalling
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── zip
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── helloworld
│ │ │ └── Server.java
│ │ └── realtime
│ │ └── Server.java
│ └── resources
│ ├── server-keystore.jks
│ └── webroot
│ └── index.html
├── service-discovery-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── service
│ └── discovery
│ └── ServiceDiscoveryVerticle.java
├── service-proxy-examples
│ ├── pom.xml
│ ├── README.adoc
│ ├── service-consumer
│ │ ├── pom.xml
│ │ └── src
│ │ └── main
│ │ └── java
│ │ └── io
│ │ └── vertx
│ │ └── examples
│ │ └── service
│ │ └── consumer
│ │ ├── ConsumerVerticle.java
│ │ └── Failures.java
│ ├── service-provider
│ │ ├── node-client
│ │ │ ├── index.js
│ │ │ ├── package.json
│ │ │ └── package-lock.json
│ │ ├── pom.xml
│ │ ├── README.md
│ │ └── src
│ │ └── main
│ │ ├── generated
│ │ │ └── io
│ │ │ └── vertx
│ │ │ └── examples
│ │ │ └── service
│ │ │ ├── ProcessorServiceVertxEBProxy.java
│ │ │ ├── ProcessorServiceVertxProxyHandler.java
│ │ │ └── rxjava3
│ │ │ └── ProcessorService.java
│ │ ├── java
│ │ │ └── io
│ │ │ └── vertx
│ │ │ └── examples
│ │ │ └── service
│ │ │ ├── impl
│ │ │ │ └── ProcessorServiceImpl.java
│ │ │ ├── package-info.java
│ │ │ ├── ProcessorService.java
│ │ │ └── ProcessorServiceVerticle.java
│ │ └── resources
│ │ └── webroot
│ │ ├── index.html
│ │ └── processor_service-proxy.js
│ └── sockjs-proxies
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── generated
│ │ ├── io
│ │ │ └── vertx
│ │ │ └── example
│ │ │ └── web
│ │ │ └── proxies
│ │ │ ├── MyServiceVertxEBProxy.java
│ │ │ └── MyServiceVertxProxyHandler.java
│ │ └── vertx-sockjs-proxy-example-js
│ │ ├── my_service-proxy.d.ts
│ │ └── my_service-proxy.js
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── web
│ │ └── proxies
│ │ ├── MyServiceImpl.java
│ │ ├── MyService.java
│ │ ├── package-info.java
│ │ └── Server.java
│ └── resources
│ ├── client
│ │ ├── main.ts
│ │ └── my_service-proxy.ts
│ ├── package.json
│ ├── package-lock.json
│ ├── tsconfig.json
│ ├── webpack.config.js
│ └── webroot
│ └── index.html
├── shell-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── shell
│ │ ├── deploy_service_http
│ │ │ └── DeployShell.java
│ │ ├── deploy_service_ssh
│ │ │ └── DeployShell.java
│ │ ├── deploy_service_telnet
│ │ │ └── DeployShell.java
│ │ ├── echokeyboard
│ │ │ └── EchoKeyboardCommand.java
│ │ ├── helloworld
│ │ │ └── HelloWorldCommand.java
│ │ ├── prompt
│ │ │ └── PromptCommand.java
│ │ ├── run_service_http
│ │ │ └── RunShell.java
│ │ ├── run_service_ssh
│ │ │ └── RunShell.java
│ │ ├── run_service_telnet
│ │ │ └── RunShell.java
│ │ ├── starwars
│ │ │ └── StarwarsCommand.java
│ │ ├── termcast
│ │ │ ├── ScreenCaster.java
│ │ │ └── TermCast.java
│ │ ├── top
│ │ │ └── TopCommand.java
│ │ └── wget
│ │ └── WgetCommand.java
│ └── resources
│ └── io
│ └── vertx
│ └── example
│ └── shell
│ ├── deploy_service_http
│ │ └── auth.properties
│ ├── deploy_service_ssh
│ │ ├── auth.properties
│ │ └── keystore.jks
│ ├── run_service_http
│ │ └── auth.properties
│ └── run_service_ssh
│ ├── auth.properties
│ └── keystore.jks
├── spring-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── spring-verticle-factory
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── examples
│ └── spring
│ └── verticlefactory
│ ├── ExampleApplication.java
│ ├── Greeter.java
│ ├── GreetingVerticle.java
│ └── SpringVerticleFactory.java
├── sql-client-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── sqlclient
│ ├── query_params
│ │ └── SqlClientExample.java
│ ├── simple
│ │ └── SqlClientExample.java
│ ├── streaming
│ │ └── SqlClientExample.java
│ ├── template
│ │ └── SqlClientExample.java
│ ├── template_mapping
│ │ ├── package-info.java
│ │ ├── SqlClientExample.java
│ │ └── User.java
│ ├── transaction
│ │ └── SqlClientExample.java
│ └── transaction_rollback
│ └── SqlClientExample.java
├── unit-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ ├── main
│ │ └── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── unit
│ │ ├── HelloVerticle.java
│ │ └── SomeVerticle.java
│ └── test
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── unit
│ └── test
│ ├── JUnitAndAssertJTest.java
│ ├── JUnitAndHamcrestTest.java
│ ├── JUnitVerticleTest.java
│ ├── MyJUnitTest.java
│ ├── ParameterizedTest.java
│ ├── RunOnContextTest.java
│ └── VertxUnitTest.java
├── virtual-threads-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ └── java
│ └── io
│ └── vertx
│ └── example
│ └── virtualthreads
│ ├── HttpClientExample.java
│ ├── MovieRatingService.java
│ ├── SqlClientExample.java
│ └── WebClientExample.java
├── web-api-service-example
│ ├── pom.xml
│ ├── README.md
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── examples
│ │ └── webapiservice
│ │ ├── models
│ │ │ ├── package-info.java
│ │ │ └── Transaction.java
│ │ ├── persistence
│ │ │ ├── impl
│ │ │ │ └── TransactionPersistenceImpl.java
│ │ │ └── TransactionPersistence.java
│ │ ├── services
│ │ │ ├── impl
│ │ │ │ └── TransactionsManagerServiceImpl.java
│ │ │ ├── package-info.java
│ │ │ └── TransactionsManagerService.java
│ │ └── WebApiServiceExampleMainVerticle.java
│ └── resources
│ ├── logback.xml
│ └── openapi.json
├── web-client-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── webclient
│ │ ├── https
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── oauth
│ │ │ └── TwitterOAuthExample.java
│ │ ├── queryparams
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── response
│ │ │ ├── jsonobject
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── jsonpojo
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── send
│ │ │ ├── formurlencoded
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── helloworld
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── jsonobject
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── jsonpojo
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ ├── multipartform
│ │ │ │ ├── Client.java
│ │ │ │ └── Server.java
│ │ │ └── stream
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ └── simple
│ │ ├── Client.java
│ │ └── Server.java
│ └── resources
│ ├── io
│ │ └── vertx
│ │ └── example
│ │ └── webclient
│ │ ├── https
│ │ │ ├── client-truststore.jks
│ │ │ └── server-keystore.jks
│ │ └── send
│ │ └── stream
│ │ └── upload.txt
│ └── vertx-default-jul-logging.properties
├── web-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── web
│ │ ├── angular_realtime
│ │ │ └── Server.java
│ │ ├── auth
│ │ │ └── Server.java
│ │ ├── authorisation
│ │ │ └── Server.java
│ │ ├── authsql
│ │ │ └── Server.java
│ │ ├── blockinghandler
│ │ │ └── Server.java
│ │ ├── chat
│ │ │ └── Server.java
│ │ ├── cookie
│ │ │ └── Server.java
│ │ ├── cors
│ │ │ └── Server.java
│ │ ├── custom_authorisation
│ │ │ └── Server.java
│ │ ├── form
│ │ │ └── Server.java
│ │ ├── grpc
│ │ │ └── helloworld
│ │ │ ├── Client.java
│ │ │ └── Server.java
│ │ ├── helloworld
│ │ │ └── Server.java
│ │ ├── http2
│ │ │ ├── Image.java
│ │ │ └── Server.java
│ │ ├── jwt
│ │ │ └── Server.java
│ │ ├── oauth2
│ │ │ └── Server.java
│ │ ├── openapi3
│ │ │ └── OpenAPI3Server.java
│ │ ├── openapi_router
│ │ │ ├── RequestValidationExample.java
│ │ │ └── ResponseValidationExample.java
│ │ ├── proxy
│ │ │ ├── Backend.java
│ │ │ └── Server.java
│ │ ├── react
│ │ │ └── Server.java
│ │ ├── realtime
│ │ │ └── Server.java
│ │ ├── rest
│ │ │ └── SimpleREST.java
│ │ ├── sessions
│ │ │ └── Server.java
│ │ ├── sqlclient
│ │ │ └── Server.java
│ │ ├── staticsite
│ │ │ └── Server.java
│ │ ├── templating
│ │ │ ├── freemarker
│ │ │ │ └── Server.java
│ │ │ ├── handlebars
│ │ │ │ └── Server.java
│ │ │ ├── mvel
│ │ │ │ └── Server.java
│ │ │ ├── pebble
│ │ │ │ └── Server.java
│ │ │ ├── rocker
│ │ │ │ └── Server.java
│ │ │ └── thymeleaf
│ │ │ └── Server.java
│ │ ├── upload
│ │ │ └── Server.java
│ │ └── validation
│ │ └── ValidationExampleServer.java
│ ├── proto
│ │ └── helloworld.proto
│ └── resources
│ ├── coin.png
│ ├── io
│ │ └── vertx
│ │ └── example
│ │ └── web
│ │ ├── angular_realtime
│ │ │ └── webroot
│ │ │ ├── css
│ │ │ │ ├── bootstrap.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── patterns.less
│ │ │ │ ├── README
│ │ │ │ ├── reset.less
│ │ │ │ ├── scaffolding.less
│ │ │ │ ├── tables.less
│ │ │ │ ├── type.less
│ │ │ │ └── variables.less
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ └── client_app.js
│ │ │ └── js3rdparty
│ │ │ ├── angular-1.0.1.js
│ │ │ ├── bootstrap-alerts.js
│ │ │ ├── bootstrap-tabs.js
│ │ │ ├── jquery-1.7.1.min.js
│ │ │ ├── less-1.2.1.min.js
│ │ │ └── README
│ │ ├── auth
│ │ │ ├── private
│ │ │ │ └── private_page.html
│ │ │ └── webroot
│ │ │ ├── index.html
│ │ │ ├── loginpage.html
│ │ │ └── page1.html
│ │ ├── authorisation
│ │ │ ├── keystore.jceks
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── authsql
│ │ │ ├── private
│ │ │ │ └── private_page.html
│ │ │ └── webroot
│ │ │ ├── index.html
│ │ │ ├── loginpage.html
│ │ │ └── page1.html
│ │ ├── chat
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── cookie
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── cors
│ │ │ └── webroot
│ │ │ ├── index.html
│ │ │ ├── nopreflight.html
│ │ │ └── preflight.html
│ │ ├── custom_authorisation
│ │ │ ├── keystore.jceks
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── jwt
│ │ │ ├── keystore.jceks
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── oauth2
│ │ │ └── views
│ │ │ ├── advanced.hbs
│ │ │ └── index.hbs
│ │ ├── openapi_router
│ │ │ └── petstore.json
│ │ ├── react
│ │ │ ├── app-client.js
│ │ │ ├── package.json
│ │ │ ├── webpack.config.js
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── realtime
│ │ │ └── webroot
│ │ │ └── index.html
│ │ ├── staticsite
│ │ │ └── webroot
│ │ │ ├── index.html
│ │ │ ├── page1.html
│ │ │ └── page2.html
│ │ └── templating
│ │ ├── freemarker
│ │ │ └── templates
│ │ │ └── index.ftl
│ │ ├── handlebars
│ │ │ └── templates
│ │ │ └── index.hbs
│ │ ├── mvel
│ │ │ ├── templates
│ │ │ │ └── mytempl.templ
│ │ │ └── webroot
│ │ │ ├── index.html
│ │ │ ├── page1.html
│ │ │ └── page2.html
│ │ ├── pebble
│ │ │ └── templates
│ │ │ └── index.peb
│ │ ├── rocker
│ │ │ └── templates
│ │ │ ├── index.rocker.html
│ │ │ └── main.rocker.html
│ │ └── thymeleaf
│ │ └── templates
│ │ └── index.html
│ ├── petstore.yaml
│ ├── tls
│ │ ├── server-cert.pem
│ │ └── server-key.pem
│ ├── vertx-default-jul-logging.properties
│ └── vertx-users.properties
├── web-graphql-examples
│ ├── pom.xml
│ ├── README.adoc
│ └── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ └── web
│ │ └── graphql
│ │ ├── Client.java
│ │ ├── Link.java
│ │ ├── Server.java
│ │ └── User.java
│ └── resources
│ └── links.graphqls
└── zipkin-examples
├── pom.xml
├── README.adoc
├── src
│ └── main
│ ├── java
│ │ └── io
│ │ └── vertx
│ │ └── example
│ │ ├── tracing
│ │ │ ├── ChuckNorrisJokesVerticle.java
│ │ │ ├── GatewayVerticle.java
│ │ │ └── HelloVerticle.java
│ │ └── zipkin
│ │ ├── Gateway.java
│ │ ├── HelloService.java
│ │ ├── JokeService.java
│ │ └── ZipkinExample.java
│ └── resources
│ └── jokes.json
└── zipkin.png
661 directories, 825 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论