views:

26

answers:

2

I am developing a J2EE application using IntelliJ and deploying to Glassfish. I am also using JRebel which hasn't seemed to help reduce the need to redeploy.

Changes to JPA entities still requires redeploying as do changes to JSPs or Tags.

What configuration options in either IntelliJ, Glassfish, or JRebel should I be looking into so that I can just change code and see/test my changes without having to redeploy?

A: 

Hi! have you tried asking at JRebel's forum?

Anton Arhipov
Thats plan B. They don't support OpenID and aren't as awesome as StackOverflow.
Freiheit
Accepted this answer since I asked at JRebels forum and got an answer. It was a user error on my part. http://www.zeroturnaround.com/forum/topic.php?id=986
Freiheit
A: 

My toolkit for JRebel is:

  • my web application is configured with Maven JRebel plugin
  • my web server is running with proper java agent (http://www.zeroturnaround.com/reference-manual/server.html#server-3.1)
  • when I change something in IntelliJ I just hit 'recompile'

However IntelliJ itself is JRebel unaware. I don't like messing with too many IDE plugins.

Henryk Konsek