var JDBCClient = require("vertx-jdbc-js/jdbc_client"); var Router = require("vertx-web-js/router"); var BodyHandler = require("vertx-web-js/body_handler"); var client; var setUpInitialData = function(done) { client.getConnection(function (res, res_err) { if (res_err != null) { throw res_err; } var conn = res; conn.execute("CREATE TABLE IF NOT EXISTS products(id INT IDENTITY, name VARCHAR(255), price FLOAT, weight INT)", function (ddl, ddl_err) { if (ddl_err != null) { throw ddl_err; } conn.execute("INSERT INTO products (name, price, weight) VALUES ('Egg Whisk', 3.99, 150), ('Tea Cosy', 5.99, 100), ('Spatula', 1.00, 80)", function (fixtures, fixtures_err) { if (fixtures_err != null) { throw fixtures_err; } done.handle(null); }); }); }); }; var that = this; // Create a JDBC client with a test database client = JDBCClient.createShared(vertx, { "url" : "jdbc:hsqldb:mem:test?shutdown=true", "driver_class" : "org.hsqldb.jdbcDriver" }); setUpInitialData(function (ready) { var router = Router.router(vertx); router.route().handler(BodyHandler.create().handle); // in order to minimize the nesting of call backs we can put the JDBC connection on the context for all routes // that match /products // this should really be encapsulated in a reusable JDBC handler that uses can just add to their app router.route("/products*").handler(function (routingContext) { client.getConnection(function (res, res_err) { if (res_err != null) { routingContext.fail(res_err); } else { var conn = res; // save the connection on the context routingContext.put("conn", conn); // we need to return the connection back to the jdbc pool. In order to do that we need to close it, to keep // the remaining code readable one can add a headers end handler to close the connection. The reason to // choose the headers end is that if the close of the connection or say for example end of transaction // results in an error, it is still possible to return back to the client an error code and message. routingContext.addHeadersEndHandler(function (done) { conn.close(function (close, close_err) { if (close_err != null) { done.fail(close_err); } else { done.complete(); } }); }); routingContext.next(); } }); }).failureHandler(function (routingContext) { var conn = routingContext.get("conn"); if (conn !== null) { conn.close(function (v, v_err) { }); } }); router.get("/products/:productID").handler(that.handleGetProduct); router.post("/products").handler(that.handleAddProduct); router.get("/products").handler(that.handleListProducts); vertx.createHttpServer().requestHandler(router.accept).listen(8080); });
相关推荐
它以其模块化、事件驱动的架构和多语言支持而闻名,使得开发者可以使用Java、JavaScript、Ruby、Groovy等多种语言进行开发。在这个“vertx-h2-httpclient-demo.zip”压缩包中,我们很显然会看到一个基于Vert.x的Web...
JavaScript Vertx开发教程 在现代Web开发中,Vert.x是一个重要的工具,它是一个轻量级、反应式的事件驱动框架,专为构建分布式系统而设计。本教程将深入探讨如何使用JavaScript来利用Vert.x的强大功能,以创建高效...
Vertx JDBC 执行器 JDBC Executor 为通过 Vertx 3.0 事件总线访问任何符合 JDBC 的数据源提供了一种快速有效的方法。 与 Executor 的所有交互都应该是原子的,并且尽可能“简短而甜蜜”,以尽量减少对共享(JDBC ...
包含翻译后的API文档:vertx-core-3.9.0-javadoc-API文档-中文(简体)版.zip; Maven坐标:io.vertx:vertx-core:3.9.0; 标签:vertx、core、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开...
vertx-service-demo
**JDBC数据源连接池配置与使用详解** 在Java Web应用中,数据库连接的管理是至关重要的。为了提高性能和资源利用率,开发人员通常会使用数据源连接池。本篇文章将详细讲解JDBC数据源连接池的配置和使用,以帮助你更...
- 数据库集成可能通过Vertx的JDBC客户端进行,实现异步的数据库操作。 - 可能包含配置文件、测试用例、部署脚本等辅助资源。 4. **开发环境与工具**: - 开发者通常会使用Java 8或更高版本,因为Vert.x 3支持...
包含翻译后的API文档:vertx-web-3.9.0-javadoc-API文档-中文(简体)版.zip; Maven坐标:io.vertx:vertx-web:3.9.0; 标签:vertx、web、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开...
vert.x提供了多种编程语言的API,包括Java、JavaScript(Node.js风格)、Groovy、Rust、Kotlin等,使得开发者可以根据自己的喜好选择合适的语言进行开发。这种跨语言的能力使其在多语言开发环境中具有很高的灵活性。...
【标题】:“vertx集成mybatis架构” 在Java开发领域,Vert.x是一个高度可扩展的、非阻塞的事件驱动框架,它适用于构建现代的、响应式的后端应用。MyBatis则是流行的持久层框架,提供了灵活的SQL映射机制和对象关系...
包含翻译后的API文档:vertx-web-3.9.0-javadoc-API文档-中文(简体)-英语-对照版.zip; Maven坐标:io.vertx:vertx-web:3.9.0; 标签:vertx、web、中英对照文档、jar包、java; 使用方法:解压翻译后的API文档,用...
包含翻译后的API文档:vertx-core-3.9.0-javadoc-API文档-中文(简体)-英语-对照版.zip; Maven坐标:io.vertx:vertx-core:3.9.0; 标签:vertx、core、中英对照文档、jar包、java; 使用方法:解压翻译后的API文档,...
包含翻译后的API文档:vertx-bridge-common-3.9.0-javadoc-API文档-中文(简体)版.zip; Maven坐标:io.vertx:vertx-bridge-common:3.9.0; 标签:vertx、bridge、common、中文文档、jar包、java; 使用方法:解压...
包含翻译后的API文档:vertx-auth-common-3.9.0-javadoc-API文档-中文(简体)版.zip; Maven坐标:io.vertx:vertx-auth-common:3.9.0; 标签:vertx、auth、common、中文文档、jar包、java; 使用方法:解压翻译后的...
【标题】"vertx-mod-jersey-2.4.0-final.zip" 是一个基于 Vert.x 框架的 Jersey 模块的发布版本。Vert.x 是一个轻量级、高性能且反应式的 Java 开发平台,它允许开发人员构建分布式系统,而Jersey 则是 Java 世界中...
传统的JDBC操作,如`ResultSet rs = stmt.executeQuery(sql);`,会在执行查询时阻塞,而使用`vertx-jdbc-client`,我们可以这样操作:`connection.query("SELECT * FROM Products", result -> {/* do something with...
### Vertx-Web初探 #### 一、项目概述与准备 ##### 1.1 基本项目结构 为了确保项目的顺利进行,首先需要创建一个Maven项目,并且按照以下结构组织: - 源代码包:`src/main/vertx` - 资源路径:`src/main/...
包含翻译后的API文档:vertx-bridge-common-3.9.0-javadoc-API文档-中文(简体)-英语-对照版.zip; Maven坐标:io.vertx:vertx-bridge-common:3.9.0; 标签:vertx、bridge、common、中英对照文档、jar包、java; ...
【标题】"用vertx构建最小的wiki"的项目是一个基于Java编程语言,利用Vert.x框架来搭建的轻量级维基系统。Vert.x是一个高度可扩展的、反应式的应用平台,适合构建现代的、非阻塞式的服务。在这个项目中,开发环境...
- **IntelliJ IDEA**:推荐使用最新版本的社区版或专业版。 - **Gradle**:可以在项目中直接集成,无需预先安装。 - **Java**:确保系统中已安装JDK,并设置好环境变量。 #### 三、创建Gradle项目 首先,我们需要...