Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 repl 中启动我的服务器
(use 'ring.util.serve) (serve my-app/handler)
一旦开始使用它,我如何停止服务器。
谢谢,穆尔塔萨
ring.util.serve还包含stop-server哪些可用于停止服务器。所以这应该适合你:
ring.util.serve
stop-server
(stop-server)