Questions tagged «hotswap»

8
重新部署JRebel替代品
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow 的主题。 6年前关闭。 改善这个问题 JRebel允许重新部署新编译的代码,而无需重新启动应用程序。我想知道是否还有其他选择(免费?)。在 FAQ页面回答了这个问题,但我相信它是对JRebel的偏见。这个问题是一年前在此站点上提出的,但是我将其重新提出来看看是否有人有任何新信息。 附带一提,我真的很喜欢JRebel,但是如果有免费的替代选择,我愿意尝试一下。 另外要注意的是,我正在从事一个开源项目,他们向可以证明自己在开源项目中的人们免费提供一年的许可证。这对我来说很棒(www.kuali.org),但是我永远不会在那个项目上。
190 java  jrebel  hotswap 

8
如何启用Intellij热代码交换
Intellij在我的安装中似乎没有进行基本的热代码交换。 对于此代码: public class MainTest { public void method1() { System.out.println("Breakpoint here"); } public void method2() { System.out.println("Line that will get 24 modified"); } public static void main(String[] args) { System.out.println("First print here"); MainTest mainTest = new MainTest(); mainTest.method1(); mainTest.method2(); System.out.println("Line that I do not modify"); } } 我在上面设置了一个断点,mainTest.method1();然后在method2()处修改了字符串,按ctrl + …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.