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

IntelliJ, Maven, JRebel (?), Tomcat and Continuous Integration. How To?

I am new in Java and Continuous Integration. I want to setup a development environment using IntelliJ, Maven, GIT and JRebel (this was strongly recommended by a friend of mine). Tomcat Server is on AWS, not on my local Mac OS X machine. Is it…
0
votes
1 answer

View exact java commands issued by SBT

I'm trying to integrate jrebel with an SBT project. The following entry is in the build.scala file: javaOptions ++= Seq("-javaagent:/path/to/jrebel.jar", "-Drebel.log=true", "-Drebel.log.file=/path/to/jrebel.log") However, I'm not seeing any Jrebel…
mjk
  • 659
  • 1
  • 9
  • 20
0
votes
2 answers

Jrebel - use license on the remote server

I have JRebel 5.2.0 and activated it trough Eclipse JRebel Config Center using license code. It activated successfully and Open Source Software Plan is active. On the same OS, I have a virtual machine running with Glassfish server and I would like…
Konrad
  • 1,605
  • 3
  • 24
  • 45
0
votes
1 answer

JRebel relative path for deployed war

I've recently started using JRebel with Eclipse and Jboss and its working perfectly fine for me. Its deploying changed files to D:/Workspace/Project/build/classes as I've mentioned the same in rebel.xml. However I want to change the path relative…
dShringi
  • 1,497
  • 2
  • 22
  • 36
0
votes
1 answer

how to start jrebel with jboss as 7

I do`not know how to use (configure) JRebel with Jboss as 7 (Bronthes). First of all i am downloading plugin for eclipse next activate social license for JRebel. Next use simple example Jboss gwt project : gwt kitchensink. When i am running Jboss…
Łukasz Woźniczka
  • 1,625
  • 3
  • 28
  • 51
0
votes
1 answer

LiveRebel questions

I'm testing liverebel and I notices some strange behaviour : My environment 1.) liverebel admin running on my local windows machine 2.) remote server linux CentOS with jboss5 server with liverebel agent Questions: 1.) when I deploy the ear the name…
simonC
  • 4,101
  • 10
  • 50
  • 78
0
votes
1 answer

how to update java class files in Tomcat and save uptime

Are there ways to update java class files in Tomcat without using Tomcat Manager and reloadable with saving uptime? Reloading application from Tomcat Manager takes about 15-30 seconds and it invoke locked up server. How to update a large application…
0
votes
0 answers

JRebel rebel.xml configuration problems using web and link elements

I have the following rebel.xml file:
Tony Rad
  • 2,479
  • 20
  • 32
0
votes
1 answer

Configuring JRebel 5 with Resin 3.1.x on mac

I'm evaluating JRebel, I was able to install and test it on tomcat in few minutes but I've spent hours trying to configure it with Resin 3.1. I'm geting the following error in the app server…
Tony Rad
  • 2,479
  • 20
  • 32
0
votes
1 answer

xhtml changes are not reflected using Jrebel and JSF Mojarra 2.1.7

Java changes are reflecting immediately but not changes on the xhtml pages are showing up after page refresh. rebel.xml
user679526
  • 845
  • 4
  • 16
  • 39
0
votes
1 answer

Exception using JRebel in Eclipse Juno

I`m trying to start a web application using JBoss 4.2.3, Spring with JRebel enabled. I`m getting the following exception: javax.servlet.ServletException: …
gdfbarbosa
  • 825
  • 3
  • 10
  • 21
0
votes
1 answer

JRebel and Dynamic Class Loading

I have a few questions regarding JRebel and Java's Dynamic Class Laoding. Say for example, In a servlet I can reload servlet classes in the classes directory of the WEB-INF directory such that any time I change the class's contents and after…
gautam vegeta
  • 653
  • 6
  • 13
  • 28
0
votes
1 answer

jRebel breaks loading of Application and Session Scoped beans

While starting without jRebel the debug log of jetty contains lots of messages referring MyApplicationScopedBean like: 13:46:29.620 [main] DEBUG o.e.jetty.webapp.WebAppClassLoader - loaded class MyApplicationScopedBean from…
alehro
  • 2,198
  • 2
  • 25
  • 41
0
votes
1 answer

JRebel eclipse older versions, not versions in the update-site

If you paste http://update.zeroturnaround.com/update-site/ into your RAD 8 plugin installer you will only see the latest version, it is not working as well, and is not good for maintenance if we need to enforce a certain version to be sure that…
mjs
  • 21,431
  • 31
  • 118
  • 200
0
votes
2 answers

How to troubleshoot JRebel?

I've an application (some wars) on JBoss 5 but it isn't always getting deployed correctly with JRebel. Sometimes it works, and sometimes it doesn't. The times JRebel doesn't start I've no clue to why. There are no errors anywhere (in the console,…
Peter
  • 5,556
  • 3
  • 23
  • 38
1 2 3
20
21