Re: jetty hot deployment

2009-08-09 Thread John Armstrong
it didn't work. > Russ > > >> Date: Sun, 9 Aug 2009 09:17:06 -0700 >> Subject: Re: jetty hot deployment >> From: siber...@siberian.org >> To: users@wicket.apache.org >> >> I use JavaRebel in my dev enviro

RE: jetty hot deployment

2009-08-09 Thread Russell Simpkins
What do you use for a dev environment? I tried to get that working in a jboss env with no luck. JavaRebel sounded pretty cool. I was bummed it didn't work. Russ > Date: Sun, 9 Aug 2009 09:17:06 -0700 > Subject: Re: jetty hot deployment &g

Re: jetty hot deployment

2009-08-09 Thread John Armstrong
I use JavaRebel in my dev environment and its solved almost all of my hot-swap issues. I recommend it highly. John- On Sun, Aug 9, 2009 at 2:45 AM, Martijn Dashorst wrote: > You need to start the Start class using the debugger. Then it works > with hot swap. > > Martijn > > On Sat, Aug 8, 2009 at

Re: jetty hot deployment

2009-08-09 Thread Martijn Dashorst
You need to start the Start class using the debugger. Then it works with hot swap. Martijn On Sat, Aug 8, 2009 at 8:26 PM, Anantha Kumaran wrote: > hi johannes > i tried using mvn jetty:run > > but i am getting the following error > > Configuring Jetty for project: jqms > Webapp source directory

Re: jetty hot deployment

2009-08-08 Thread Anantha Kumaran
hi johannes i tried using mvn jetty:run but i am getting the following error Configuring Jetty for project: jqms Webapp source directory = E:\Netbeans\MyProjects\maven\jqms\src\main\webapp Reload Mechanic: automatic web.xml file = E:\Netbeans\MyProjects\maven\jqms\src\main\webapp\WEB-INF\web.xml

Re: jetty hot deployment

2009-08-08 Thread Johannes Schneider
Hi, I strongly suggest starting Jetty using Maven mvn jetty:run I add the following configuration org.mortbay.jetty maven-jetty-plugin 1 manual Reloading is triggered manually from the console. I like that be

Re: jetty hot deployment

2009-08-08 Thread Anantha Kumaran
hi martin i tried it but no luck On Sat, Aug 8, 2009 at 7:24 PM, Martin Makundi < martin.maku...@koodaripalvelut.com> wrote: > Hi! > > My jetty works like that by default, all I need is web-xml: > > >configuration > development > > > Development mode scans, deployment

Re: jetty hot deployment

2009-08-08 Thread Martin Makundi
Hi! My jetty works like that by default, all I need is web-xml: configuration development Development mode scans, deployment mode doesn't. AND better even to run in DEBUG mode (=eclipse) and it will reflect code changes too. ** Martin ---

jetty hot deployment

2009-08-08 Thread Anantha Kumaran
hi currently i am using ant and tomcat server (netbeans) to build my wicket application. The deployment and testing is taking lot of time.so i created a wicket project using the wicket-quickstart archetype.The problem is that i cannot view the changes made by me without restarting the jetty server.