You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Doug Leeper <do...@yahoo.com> on 2007/10/26 09:39:59 UTC

JavaRebel experience

I recently downloaded JavaRebel and attempted to integrate into my project in
Eclipse.

I changed the Run parameters as indicated in the installation but there was
nothing specific for eclipse.

I did in the JVM argument section:

-noverify
-javaagent:c:\opt\javarebel\javarebel-1.0-M2\javarebel.jar
-Xbootclasspath/a:c:\opt\javarebel\javarebel-1.0-M2\javarebel.jar

When I ran my application, I received an error that was not there before.
Here it is:

##########################################################

ZeroTurnaround JavaRebel 1.0-M2
(c) Copyright Webmedia, Ltd, 2007. All rights reserved.

You are running JavaRebel evaluation license.
You have 14 days until the license expires.

You will see this notification until you obtain a
full license for your installation.

Visit www.javarebel.com for instructions on obtaining
a full license.

If you think you should not see this message contact
support@javarebel.com or check that you have your
license file in the same directory as the JAR file.

##########################################################
java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory
at homeiq.wicket.WebRequestCodingStrategy.<clinit>(<generated>:143)
at
homeiq.wicket.HomeIQApplication$1$$M$ef3fc6bf.newRequestCodingStrategy(HomeIQApplication.java:109)
at
homeiq.wicket.HomeIQApplication$1$$A$ef3fc6bf.newRequestCodingStrategy(<generated>)
at homeiq.wicket.HomeIQApplication$1.newRequestCodingStrategy(<generated>)
at
org.apache.wicket.request.AbstractRequestCycleProcessor.getRequestCodingStrategy(AbstractRequestCycleProcessor.java:75)
at homeiq.wicket.HomeIQApplication$1.getRequestCodingStrategy(<generated>)
at
org.apache.wicket.protocol.http.WebApplication.mount(WebApplication.java:266)
at
org.apache.wicket.protocol.http.WebApplication.mountBookmarkablePage(WebApplication.java:297)
at
homeiq.wicket.HomeIQApplication$$M$873f1c52.init(HomeIQApplication.java:42)
at homeiq.wicket.HomeIQApplication$$A$873f1c52.init(<generated>)
at homeiq.wicket.HomeIQApplication.init(<generated>)
at org.apache.wicket.protocol.http.WicketFilter.init(WicketFilter.java:503)
at org.mortbay.jetty.servlet.FilterHolder.doStart(FilterHolder.java:99)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:40)
at
org.mortbay.jetty.servlet.ServletHandler.initialize(ServletHandler.java:589)
at org.mortbay.jetty.servlet.Context.startContext(Context.java:139)
at
org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1218)
at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:500)
at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:448)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:40)
at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:117)
at org.mortbay.jetty.Server.doStart(Server.java:217)
at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:40)
at homeiq.wicket.Start$$M$b6d9c25c.main(Start.java:92)
at homeiq.wicket.Start$$A$b6d9c25c.main(<generated>)
at homeiq.wicket.Start.main(<generated>)

When I remove Java rebel, everything works fine.

I am using JavaRebel 1.0-M2
JDK 150_06 (sun)

Has anyone else utilized JavaRebel?  If so, did you get it to work with
Wicket/Eclipse?

BTW...I posted same question on JavaRebel support forum.

I have also attempted the WicketReloadingFilter but that did not work either
for my project setup.
-- 
View this message in context: http://www.nabble.com/JavaRebel-experience-tf4695671.html#a13422257
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: JavaRebel experience

Posted by Johan Compagner <jc...@gmail.com>.
thats our own modification watcher
turn it on (development mode or manual)

On Wed, Sep 10, 2008 at 4:52 PM, reikje <re...@matenga.de> wrote:

>
> Is it possible to have Java Rebel reload the Wicket HTML as well? Like when
> we deploy a war file to JBoss, it will contain html and class files. The
> class files I can reload using Java Rebel, how would you do it with the
> html
> files?
>
>
> Stefan Simik wrote:
> >
> > Java Rebel worked for me too.
> > I had no such problem.
> >
>
> --
> View this message in context:
> http://www.nabble.com/JavaRebel-experience-tp13422257p19414750.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: JavaRebel experience

Posted by reikje <re...@matenga.de>.
Is it possible to have Java Rebel reload the Wicket HTML as well? Like when
we deploy a war file to JBoss, it will contain html and class files. The
class files I can reload using Java Rebel, how would you do it with the html
files?


Stefan Simik wrote:
> 
> Java Rebel worked for me too.
> I had no such problem.
> 

-- 
View this message in context: http://www.nabble.com/JavaRebel-experience-tp13422257p19414750.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: JavaRebel experience

Posted by Stefan Simik <st...@gmail.com>.
Java Rebel worked for me too.
I had no such problem.
-- 
View this message in context: http://www.nabble.com/JavaRebel-experience-tf4695671.html#a13632511
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: JavaRebel experience

Posted by James Law <jl...@umich.edu>.
Doug-
So far javarebel is working for me. Using tomcat and adding those lines 
worked for me.

--James


Doug Leeper wrote:
> I recently downloaded JavaRebel and attempted to integrate into my project in
> Eclipse.
>
> I changed the Run parameters as indicated in the installation but there was
> nothing specific for eclipse.
>
> I did in the JVM argument section:
>
> -noverify
> -javaagent:c:\opt\javarebel\javarebel-1.0-M2\javarebel.jar
> -Xbootclasspath/a:c:\opt\javarebel\javarebel-1.0-M2\javarebel.jar
>
> When I ran my application, I received an error that was not there before.
> Here it is:
>
> ##########################################################
>
> ZeroTurnaround JavaRebel 1.0-M2
> (c) Copyright Webmedia, Ltd, 2007. All rights reserved.
>
> You are running JavaRebel evaluation license.
> You have 14 days until the license expires.
>
> You will see this notification until you obtain a
> full license for your installation.
>
> Visit www.javarebel.com for instructions on obtaining
> a full license.
>
> If you think you should not see this message contact
> support@javarebel.com or check that you have your
> license file in the same directory as the JAR file.
>
> ##########################################################
> java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory
> at homeiq.wicket.WebRequestCodingStrategy.<clinit>(<generated>:143)
> at
> homeiq.wicket.HomeIQApplication$1$$M$ef3fc6bf.newRequestCodingStrategy(HomeIQApplication.java:109)
> at
> homeiq.wicket.HomeIQApplication$1$$A$ef3fc6bf.newRequestCodingStrategy(<generated>)
> at homeiq.wicket.HomeIQApplication$1.newRequestCodingStrategy(<generated>)
> at
> org.apache.wicket.request.AbstractRequestCycleProcessor.getRequestCodingStrategy(AbstractRequestCycleProcessor.java:75)
> at homeiq.wicket.HomeIQApplication$1.getRequestCodingStrategy(<generated>)
> at
> org.apache.wicket.protocol.http.WebApplication.mount(WebApplication.java:266)
> at
> org.apache.wicket.protocol.http.WebApplication.mountBookmarkablePage(WebApplication.java:297)
> at
> homeiq.wicket.HomeIQApplication$$M$873f1c52.init(HomeIQApplication.java:42)
> at homeiq.wicket.HomeIQApplication$$A$873f1c52.init(<generated>)
> at homeiq.wicket.HomeIQApplication.init(<generated>)
> at org.apache.wicket.protocol.http.WicketFilter.init(WicketFilter.java:503)
> at org.mortbay.jetty.servlet.FilterHolder.doStart(FilterHolder.java:99)
> at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:40)
> at
> org.mortbay.jetty.servlet.ServletHandler.initialize(ServletHandler.java:589)
> at org.mortbay.jetty.servlet.Context.startContext(Context.java:139)
> at
> org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1218)
> at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:500)
> at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:448)
> at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:40)
> at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:117)
> at org.mortbay.jetty.Server.doStart(Server.java:217)
> at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:40)
> at homeiq.wicket.Start$$M$b6d9c25c.main(Start.java:92)
> at homeiq.wicket.Start$$A$b6d9c25c.main(<generated>)
> at homeiq.wicket.Start.main(<generated>)
>
> When I remove Java rebel, everything works fine.
>
> I am using JavaRebel 1.0-M2
> JDK 150_06 (sun)
>
> Has anyone else utilized JavaRebel?  If so, did you get it to work with
> Wicket/Eclipse?
>
> BTW...I posted same question on JavaRebel support forum.
>
> I have also attempted the WicketReloadingFilter but that did not work either
> for my project setup.
>   


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org