gpt4 book ai didi

clojure - 如何在 Ring 处理程序中打印到 REPL 窗口?

转载 作者:行者123 更新时间:2023-12-03 00:23:04 25 4
gpt4 key购买 nike

(defn app [request]
(println "test")
{:body "Hello World"})

(defonce server (run-jetty #'app {:port 8080 :join? false}))

println 似乎在处理程序中不起作用。如何写入 REPL 窗口?

我使用的是逆时针方向的 Eclipse。

编辑:这看起来像 nrepl issue(future (println "foo")) 很好,但 (.start (Thread.#(println "foo"))) 没有输出。

最佳答案

println 不会直接写入输出,而是缓冲输出并稍后刷新它。您可以尝试 (.println System/out "test")

关于clojure - 如何在 Ring 处理程序中打印到 REPL 窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13660318/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com