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
3 answers

JRebel with CTRL + F9

I am using maven project with struts2, Tiles, XML Validation, Properties and Tomcat 7 maven plugin. Using Maven Tomcat 7 plugin and run with JRebel to test my work and changes. Changes to -validation.xml, struts.xml and tiles.xml are not reflected…
Pirzada
  • 4,685
  • 18
  • 60
  • 113
0
votes
1 answer

Is jRebel even needed in Intellij?

I am now able to auto incrementally compile on save in my Java EE project that is running on a Websphere server. I unistalled jRebel because I had issues starting the server suddenly, and noticed that now that Intellij is auto compiling I am also…
mjs
  • 21,431
  • 31
  • 118
  • 200
0
votes
2 answers

JRebel to monitor struts.xml

Couldn't find any info regarding this. Is there any way that JRebel monitor struts.xml for changes. This is changed alot when testing. Any solution? EDITED Console INFO: Starting Servlet Engine: Apache Tomcat/7.0.30 [2012-09-22 19:29:45] JRebel:…
Pirzada
  • 4,685
  • 18
  • 60
  • 113
0
votes
1 answer

JRebel and Oracle ADF, JDeveloper

Do any of you have any experience with JRebel (Hot deploy)? And if so, have you any experience with JRebel + Oracle ADF (JDeveloper)? We are thinking about buying some licenses, but have only tried it for 14 days (free period) Are there any other…
hogni89
  • 1,920
  • 6
  • 22
  • 39
0
votes
1 answer

JRebel with IntelliJ and buildr?

I am working with a buildr project using IntelliJ IDEA and I want to get JRebel working. This is a Spring MVC project. I have my rebel.xml configured and I created an ant script to re-package the application: buildr package test=no JRebel says it…
Mick Knutson
  • 2,297
  • 3
  • 25
  • 48
0
votes
1 answer

Would JRebel work with this project setup?

we have a project where we use Maven to deploy to Tomcat on mvn clean install. I'm fairly new to Java development and finding it difficult to continually wait for install to complete to view changes. I use IntelliJ and I think the class files are…
Ilyas Patel
  • 400
  • 2
  • 11
  • 27
0
votes
2 answers

Changing Maven profile while running with JRebel

I started using JRebel just moment ago. In my current setup launch JBoss instance from Eclipse and I use command line maven to deploy. I was wondering whether it would be anyhow possible to avoid redeployment when I need to change from test-A…
Petteri H
  • 11,779
  • 12
  • 64
  • 94
0
votes
1 answer

jrebel exclude file ( messages.properties )

At first, sorry for my bad English I want set exclude files in jrebel for example all of properties files ( *.properties ) in jrebel ( Java jRebel ) Is it possible?
navid_gh
  • 1,863
  • 3
  • 17
  • 30
-1
votes
1 answer

Where does JRebel store credentials on Mac?

Where does JRebel store credentials on Mac? For example - It stores the credentials in registry on Windows. I am trying to use another free license after my previous license expired.
Farrukh Chishti
  • 7,652
  • 10
  • 36
  • 60
-1
votes
1 answer

Java Eclipse JRebel Mercurial Stop tracking

Hello i am trying JRebel as evaluation is working now but as we use mercurial and source tree i see the mark some files as changed after adding JRebel nature i want this files not send to the server when i commit the code... Because they do not use…
chiperortiz
  • 4,751
  • 9
  • 45
  • 79
-2
votes
3 answers

How to run Jrebel as standalone?

How to confiugre JRebel as standalone service on Apache Tomcat 7? As a part of configuration I have already included jrebel.jar in JAVA_OPTS environment variable. Still, JRebel is not working.
Jigar
  • 468
  • 1
  • 5
  • 15
-3
votes
1 answer

How can I debug with JRebel in Intellij IDEA

When I debug with the Jrebel in IDEA, it always goes wrong with java.io.FileNotFoundException: E:\swlims-lims1\target\web.xml (System couldn't find the file ) when Artifact is being deployed but when I debug with the button by Tomcat, it…
Catkin
  • 1
  • 1
1 2 3
20
21