force clojure :reload

邮差的信 提交于 2019-12-06 15:41:38

:reload will force reloading of the module.

But it sounds as if you use AOT compilation and clojure resorts to the AOT compiled .class files instead of the source. If you don't need AOT compilation (read: gen-class in 99% of the cases, no dynamic byte code gen on the host vm in the rest) don't use it. If you really need AOT compilation, I can only think of removing the .class files for the namespace.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!