Questions tagged [jrebel]

JRebel is a plug-in for the Java Virtual Machine (JVM) that enables instant reloading of changes made to a Java class file.

JRebel is a JVM plugin that makes it possible for Java developers to instantly see any code change made to an app without redeploying. JRebel lets you see code changes instantly, versioning classes and resources individually and updating one at a time instead of as a lump application redeploy.1

JRebel is an alternative solution to updating classes which does not require a debugging session to be started. Instead it monitors the file system for changes and updates the classes in-memory. This means that only classes compiled to ".class" files will be updated and changes to classes in JAR files will be ignored. JRebel imposes a performance overhead on the application and should not be used in production or performance tests. It is meant to be a development tool only.[2]

JRebel is Java-based and usable on any operating system that supports Java. JRebel is IDE-agnostic and designed for integration with various Java EE standards and Java application servers.[4] Although JRebel is subscription-based commercial software, it is freely available to open source software projects and developers using the Scala programming language.

References

312 questions
0
votes
1 answer

Does JRebel really improve programming proficiency?

i used JRebel for few days...but using eclipse Kepler version i did not feel much difference in program execution and Project build, i followed same procedure as they mentioned on their official website. Does JRebel really improve programming…
Duke
  • 87
  • 9
0
votes
1 answer

Using Intellij IDEA 14 to remote debug an Application on a Tomcat Server while using JRebel

I can do this in eclipse, but when I try to do it in Intellij the remote debugger bogs down and the Application throws an IllegalThreadStateException. Is there a setting that I need to configure in Intellij, or a procedure I need to do to get this…
user3056052
  • 1,387
  • 2
  • 13
  • 16
0
votes
2 answers

JRebel do not detect web resource changes over multiple webapp folders

I have a modular web project and thus I am allowing modules to be a war archive including webapp folder. Using the following rebel.xml works fine on detecting class changes over all modules. But for some reason jrebel does not move when a html or js…
KIC
  • 5,887
  • 7
  • 58
  • 98
0
votes
1 answer

How Can Play and Jrebel Work Together?

Play recompiles files for you automatically after changes have been made and the browser refreshed. This makes Jrebel unnecessary for Play. Our flagship product JRebel lets you change your application code and just hit refresh in your browser…
BAR
  • 15,909
  • 27
  • 97
  • 185
0
votes
2 answers

Hot Reload/Swap Jhipster

I try to create project using jhipster. Looks good, but how can I run the project on hot reload mode, so I don't need to restart my application server on every java changes. I try to run jhipster project on jrebel, but I got this error. It looks…
Mahadi Siregar
  • 615
  • 3
  • 17
  • 38
0
votes
1 answer

glassfish 4 server starts twice

so i am using jsf 2.2 , primefaces 5.0, jrabel 6.0 agent when I start Gf v4 server, I dont know why it starts twice see server log from eclipse: 2014-12-29T19:52:44.398+0500|INFO: Running GlassFish Version: GlassFish Server Open Source Edition 4.0 …
Mohsin AR
  • 2,998
  • 2
  • 24
  • 36
0
votes
1 answer

Unable to install JRebel on Eclipse

I'm trying to set up JRebel on my Eclipse Indigo but whatever I do I'm unable to install it correctly. Already installed it trough the Eclipse Marketplace, direct link, zip and nothing. It doesn't give me any error during install, but after I…
Gonçalo Cardoso
  • 2,253
  • 4
  • 34
  • 63
0
votes
2 answers

Eclipse tooling for osgi bundle restart on workspace change

We develop a huge set of OSGi bundles based on Equinox and start it within Eclipse with a "OSGi Framework" launch configuration. The start of the framework with all necessary bundles and data takes 1-2 minutes which is the reason why we used DCEVM…
sreg
  • 369
  • 2
  • 12
0
votes
1 answer

How do you exclude xml files when tomcat startup with Jrebel

I've been working on a project with Spring + Flex BlazeDS. I want to use Jrebel remote debug with tomcat. But here's the problem. It seems Jrebel failed to recognize Flex BlazeDS xml tag. So when I enabled Jrebel in catalina.bat and try to start up…
Roger Ray
  • 1,251
  • 2
  • 12
  • 20
0
votes
1 answer

Java JRebel vs MyRebel licence plugin

I'm thinking to buy a licence for JRebel the product from ZeroTurnaround sounds very good but I have a questions on it.. Which are the differences between a JRebel and MyJRebel The official sites says. MyJRebel brings these capabilities to you for…
chiperortiz
  • 4,751
  • 9
  • 45
  • 79
0
votes
2 answers

JRebel suddenly destroyed server startup

JRebel suddenly destroyed my server startup (weblogic) via Eclipse. Without JRebel enabled on that server, it starts up just fine. With JRebel, now all the sudden all we get is an error message in the console saying: 'trading-repos' is not…
su99-bsa
  • 427
  • 1
  • 5
  • 11
0
votes
1 answer

JRebel: Not reloading spring controller @RequestMapping

I'm trying to figure out why JRebel doesnt reload @Controllers/ @RequestMappings. Whenever i change a requestmapping, or add a new one, JRebel does pick up the change: JRebel: Reloading class 'apps.myapp.controllers.SomeController'. But the change…
Marius
  • 3,043
  • 1
  • 15
  • 24
0
votes
0 answers

Automate Deployement of changed files in JBoss without Eclipse

What my Requirement is: When doing any sort of modification in my project's file(s), I want those particular files to get redeployed automatically without manually doing rebuild/redeploy/restart. That is, I want changes to reflect on my webpage as…
0
votes
1 answer

Gradle: Hot deploy changes to a dependency

I have an environment where I have a java(spring mvc) webapp being developed by an n-member team on intellij with gradle as the build agent. This project has a dependency that is also being developed by the same team. The dependency is published to…
Aspirant
  • 1,934
  • 4
  • 25
  • 44
0
votes
0 answers

Jrebel fails on loading place holders in Spring MVC

I have a modular spring mvc app, say MyProject. MyProject is dependent on a few other projects, that are included as pom dependencies. MyProject has a few spring config files with respect to application, security etc. The security related spring…
happybuddha
  • 1,271
  • 2
  • 20
  • 40