vote up 0 vote down star

You can perform hot deploy when you have native Java code on Jetty.

This allows you, for example, to make changes to your servlet code without requiring a restart of the server to see your application changes.

However, if you run a scripting language on top of Java - Groovy, JRuby, Jython - you can no longer perform hot deploy (at least on Jetty).

What could be the technical reason for this?

flag

2 Answers

vote up 2 vote down check

I can think of two reasons:

  1. If only your script has changed, how does your application know it has to reload the scripts? They are handled as normal resources. The container does not know that a servlet has to be redployed because of a change in the resources.
  2. Another possibility is that you store the ScriptEngine in the servlet as an instance variable. So the servlet cannot be replaced because of this dependency on the instance object which cannot be reconstructed.
link|flag
Clever answer. Thanks. – Chris Collins Jun 14 at 19:11
vote up 0 vote down

Have you ever evaluate JavaRebel? They calim that hor deployment is their business (works well under Tomcat have to work under Jetty as well).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.