上週末,我決定更多地探索 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中文網其他相關文章!