我可以在没有安装java的情况下使用JRebel

时间:2017-01-19 21:35:53

标签: java jrebel

当只使用Eclipse的嵌入式java时,JRebeL会工作吗?

我没有让java无法安装。我是否需要获取它才能使用它?

1 个答案:

答案 0 :(得分:0)

简答:否

来自JRebel Page

的长答案
  

JRebel是

A Java development-time tool that decreases turnaround by instantly reloading changes to your code. All this without having to restart the container or redeploy the application.
A JVM -javaagent plugin. The -javaagent is a command line option that has been available since Java 5 to allow custom instrumentation plugins to be registered. JRebel uses this option for installation.
A single JAR file. That’s pretty much says it all – there is no long installation process: just unzip, copy, add options to the command line and enjoy!
  

JRebel不是

An IDE plugin. JRebel comes pre-bundled with the plugins for Eclipse, IntelliJ IDEA, NetBeans and JDeveloper, however, JRebel agent is designed to be IDE-agnostic and can be used outside the IDE.
A framework. JRebel does not introduce any dependencies in your application. You can take it away at any moment and just continue developing the way you do normally.
An application server. JRebel works with all prominent application servers, but it definitely isn’t one.
A custom JVM. JRebel doesn’t require you to make any changes to the JVM and works on all prominent JVM implementations.