有没有办法在 compojure 中进行热重载?

发布于 2024-12-21 02:02:11 字数 260 浏览 2 评论 0原文

我是 clojure 和 compojure 的新手,我想知道是否有一种方法可以像 Ruby 的 Sinatra(带有 shotgun gem)或 Java 的 Play 那样对代码更改进行热重载!

我正在关注这个 Heroku 教程 所以如果有办法做到这一点与工头宝石一起也可以。

谢谢!

I'm new to clojure and compojure and I was wondering if there's a way to do a hot reload of code changes as you can with Ruby's Sinatra (with the shotgun gem) or Java's Play!

I'm following along with this Heroku tutorial so if there's a way to do it with the foreman gem that would work too.

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谷夏 2024-12-28 02:02:11

Compojure 的最新版本通过将所有中间件合并到单个函数调用中,使其变得更加容易:

https://github.com/weavejester/compojure/wiki/Getting-Started

特别是......

(require '[compojure.handler as handler])

; define my-routes in here as normal
(handler/site my-routes)

我在自己的项目中使用了其中的一些。它运行良好,但如果我决定需要添加或删除任何内容,我将直接切换回选择环中间件。

Recent versions of Compojure make it even easier by incorporating all of the middleware into a single function call:

https://github.com/weavejester/compojure/wiki/Getting-Started

In particular...

(require '[compojure.handler as handler])

; define my-routes in here as normal
(handler/site my-routes)

I'm using some of this in my own projects. It works well, but I'll switch back to choosing ring middleware directly if I decide that I need to add or remove anything.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文