上周末,我决定更多地探索 Clojure 如何与现有的 Java 生态系统交互,挑战很简单:
以 Quarkus 框架为基础,在 Clojure 中创建一个简单的 Web 框架。
场所:
(defn send-hello-world [] "Hello World") (defn routes [] [{:method "GET" :path "/hello" :handler send-hello-world}])
一些定义:
在 Quarkus 中启动应用程序非常容易,您可以按照本教程进行操作,因为您可以看到最后一个命令是 quarkus create && cd code-with-quarkus,之后您可以使用以下命令打开文件夹 code-with-quarkus您最喜欢的 IDE,该命令创建了 Quarkus 应用程序的基本结构,您可以使用 quarkus dev 运行
您需要配置 Quarkus 以在目标文件夹(包含已编译应用程序的文件夹)中包含 .clj 文件,您可以通过在
<resources> <resource> <directory>/</directory> <includes> <include>*.clj</include> </includes> </resource> </resources>
正如我之前提到的,我在 main 文件夹的同一位置定义了一个结构来声明我的路由。然后我创建了一个名为 quarkus_clj 的文件夹,其中包含一个名为 core 的文件,代码如下:
(ns quarkus-clj.core) (defn send-hello-world [] "Hello World") (defn routes [] [{:method "GET" :path "/hello" :handler send-hello-world}])
这就是魔法发生的地方??!
首先,您应该在 Quarkus 应用程序中安装 Clojure;您可以通过在 pom.xml
中添加依赖项来实现
<dependency> <groupId>org.clojure</groupId> <artifactId>clojure</artifactId> <version>1.11.1</version> </dependency>
现在,您可以删除文件 GreetingResource.java 及其测试。在同一位置,创建一个文件 Getting.java
我写了一些评论来解释它是如何工作的
@ApplicationScoped public class Starting { //Setup app routes public void setupRouter(@Observes Router router) { // Load Clojure core; IFn require = Clojure.var("clojure.core", "require"); // Load quarkus-clj.core namespace require.invoke(Clojure.read("quarkus-clj.core")); // Load the route list function IFn routesFn = Clojure.var("quarkus-clj.core", "route"); // Invoke the function with no parameters PersistentVector routesVector = (PersistentVector) routesFn.invoke(); //For each route in routes vector for (Object route : routesVector) { /**Get the route map, example {:method "GET" :path "/hello" :handler send-hello-world} */ PersistentArrayMap routeMap = (PersistentArrayMap) route; //Get :path value String path = (String) routeMap.valAt(Clojure.read(":path")); //Get :handler function IFn handlerRoute = (IFn) routeMap.valAt(Clojure.read(":handler")); //Get :method value String method = (String) routeMap.valAt(Clojure.read(":method")); //Create a handler to exec handler function Handler<RoutingContext> handlerFn = (RoutingContext context) -> { String result = (String) handlerRoute.invoke(); context.response().end(result); }; //Config the route in quarkus router.route(HttpMethod.valueOf(method), path).handler(handlerFn); } } }
现在你可以运行:quarkus dev 打开你声明的路线并查看结果!
这是如何在 Quarkus 应用程序中使用 Clojure 创建动态路由的快速示例。只需几个步骤,我们就连接了两个生态系统并建立了一个基本的路由系统。请随意在此基础上进行扩展,并使用 Clojure 和 Quarkus 探索其他可能性!
以上是使用真实示例从 Java 调用 Clojure (Clojure Quarkus)的详细内容。更多信息请关注PHP中文网其他相关文章!