Re: Can I develop without recompiling/restarting after every change?

2010-06-06 Thread John Krasnay
On Sun, Jun 06, 2010 at 08:54:18AM +1200, b...@actrix.gen.nz wrote: If you study the effects of adding resource paths in Wicket then you will find that both methods will co-exist, not negate each other as you write. Yes, I understand that. But you have to put the markup for each component

Re: Can I develop without recompiling/restarting after every change?

2010-06-06 Thread bht
Hi Yes, I understand that. But you have to put the markup for each component somewhere. If it's not on the classpath, then you will not be able to package that component into a JAR for re-use. As I wrote, both methods co-exist, and you can put markup on the classpath and package it as jar while

RE: Can I develop without recompiling/restarting after every change?

2010-06-06 Thread Russell Simpkins
I have to thank Martijn for pointing out the Start.java file. I am trying hard not to beat myself up for not using this sooner. I have not gone through the works just yet to move my HTML files to another location. I've left them in with the class files. So, for eclipse love in this situation,

RE: Can I develop without recompiling/restarting after every change?

2010-06-06 Thread Russell Simpkins
hotmail just destroyed my last post. I apologize. I will try one more time to share my source import org.mortbay.jetty.Connector;import org.mortbay.jetty.Server;import org.mortbay.jetty.bio.SocketConnector;import org.mortbay.jetty.webapp.WebAppContext;import

RE: Can I develop without recompiling/restarting after every change?

2010-06-06 Thread Chris Colman
Krasnay Subject: Re: Can I develop without recompiling/restarting after every change? Hi Yes, I understand that. But you have to put the markup for each component somewhere. If it's not on the classpath, then you will not be able to package that component into a JAR for re-use. As I wrote, both

Re: Can I develop without recompiling/restarting after every change?

2010-06-05 Thread John Krasnay
On Sat, Jun 05, 2010 at 10:13:42AM +1200, b...@actrix.gen.nz wrote: Hi, My suggestions were meant to be general, and with best I actually meant in all environments including certified J2EE servers. I'm aware that's what you meant. That's why I challenged it. I don't agree that it's the best

Re: Can I develop without recompiling/restarting after every change?

2010-06-05 Thread bht
Hi, I don't agree that it's the best approach in all environments, and I think your advice negates one of the best features of Wicket, namely the ability to package complete Wicket components (including their markup and other resources) into JAR files for convenient re-use across applications.

Re: Can I develop without recompiling/restarting after every change?

2010-06-04 Thread bht
...@wickettraining.com ?wrote: From: Jeremy Thomersonjer...@wickettraining.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users@wicket.apache.org Date: Friday, May 21, 2010, 12:17 PM the easiest way to do this is to use the Start class (Start.java) from

Re: Can I develop without recompiling/restarting after every change?

2010-06-03 Thread bht
. --- On Fri, 5/21/10, Jeremy Thomersonjer...@wickettraining.com  wrote: From: Jeremy Thomersonjer...@wickettraining.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users@wicket.apache.org Date: Friday, May 21, 2010, 12:17 PM the easiest way to do

Re: Can I develop without recompiling/restarting after every change?

2010-06-03 Thread John Krasnay
Thomersonjer...@wickettraining.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users@wicket.apache.org Date: Friday, May 21, 2010, 12:17 PM the easiest way to do this is to use the Start class (Start.java) from the quickstart to run an embedded

Re: Can I develop without recompiling/restarting after every change?

2010-06-03 Thread Igor Vaynberg
Thomersonjer...@wickettraining.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users@wicket.apache.org Date: Friday, May 21, 2010, 12:17 PM the easiest way to do this is to use the Start class (Start.java) from the quickstart to run an embedded jetty instance

Re: Can I develop without recompiling/restarting after every change?

2010-05-31 Thread John Krasnay
This is how I work too. It uses the hot swap feature of the JVM. It works if you only change method bodies, but if you make changes to the class structure (fields, method signatures, etc.) you have to restart the VM. Apparently jRebel can reload even these kinds of changes. I'm happy with hot

Re: Can I develop without recompiling/restarting after every change?

2010-05-31 Thread Thies Edeling
Indeed JRebel reloads class structure changes as well. A very time-saving in combination with jetty. The sysdeo plugin that was recommended earlier is very outdated, hasn't been updated in 3 years. On 05/31/2010 06:01 PM, John Krasnay wrote: This is how I work too. It uses the hot swap

Re: Can I develop without recompiling/restarting after every change?

2010-05-31 Thread James Carman
On Sun, May 30, 2010 at 5:22 PM, Jeremy Thomerson jer...@wickettraining.com wrote: I've not used jRebel, but I commonly run my applications in debug mode in Eclipse and do not have to restart the server - even with code changes.  The exception is changing a method signature of classes that are

Re: Can I develop without recompiling/restarting after every change?

2010-05-30 Thread Alex Objelean
). Alex -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-I-develop-without-recompiling-restarting-after-every-change-tp2226360p2236201.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Can I develop without recompiling/restarting after every change?

2010-05-30 Thread Martijn Dashorst
recompiling/restarting after every change? Best. --- On Fri, 5/21/10, Jeremy Thomersonjer...@wickettraining.com  wrote: From: Jeremy Thomersonjer...@wickettraining.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users@wicket.apache.org Date: Friday, May 21

Re: Can I develop without recompiling/restarting after every change?

2010-05-30 Thread David Chang
Subject: Re: Can I develop without recompiling/restarting after every change? To: users@wicket.apache.org Date: Sunday, May 30, 2010, 6:27 AM If you are using eclipse IDE for your development, I find the best tools the following: 1) Run-jetty-run plugin: http://code.google.com/p/run-jetty

Re: Can I develop without recompiling/restarting after every change?

2010-05-30 Thread Brian Mulholland
alex.objel...@gmail.com wrote: From: Alex Objelean alex.objel...@gmail.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users@wicket.apache.org Date: Sunday, May 30, 2010, 6:27 AM If you are using eclipse IDE for your development, I find the best tools

Re: Can I develop without recompiling/restarting after every change?

2010-05-30 Thread Douglas Ferguson
-wicket.1842946.n4.nabble.com/Can-I-develop-without-recompiling-restarting-after-every-change-tp2226360p2236201.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Can I develop without recompiling/restarting after every change?

2010-05-30 Thread Alex Objelean
jRebel allows you to change the java code without restarting the server. Alex -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-I-develop-without-recompiling-restarting-after-every-change-tp2226360p2236403.html Sent from the Wicket - User mailing list archive

Re: Can I develop without recompiling/restarting after every change?

2010-05-30 Thread Ray Weidner
Nobody seems to have mentioned it, but I have been developing with Eclipse's Dynamic Web Projects, and it has greatly shortened my development cycle from when I was loading the project into Tomcat through the manager web interface. Basically, a DWP is able to run the server itself, and it

Re: Can I develop without recompiling/restarting after every change?

2010-05-30 Thread Jason Lea
I use DWP in Eclipse... In the server view, you have your Tomcat server listed that you can start/stop etc. When you double click it opens up the settings for runtime environment and other options. One option is something like 'serve module without publishing' - that one means it basically

Re: Can I develop without recompiling/restarting after every change?

2010-05-30 Thread Jeremy Thomerson
On Sun, May 30, 2010 at 12:05 PM, Alex Objelean alex.objel...@gmail.comwrote: jRebel allows you to change the java code without restarting the server. I've not used jRebel, but I commonly run my applications in debug mode in Eclipse and do not have to restart the server - even with code

Re: Can I develop without recompiling/restarting after every change?

2010-05-30 Thread David Chang
This is really a great discussion thread and turned up lot of good stuff. Love this forum! Cheers! --- On Sun, 5/30/10, Jason Lea ja...@kumachan.net.nz wrote: From: Jason Lea ja...@kumachan.net.nz Subject: Re: Can I develop without recompiling/restarting after every change? To: users

Re: Can I develop without recompiling/restarting after every change?

2010-05-29 Thread David Chang
that to get these files to reload automatically? Thanks for helping out a super-beginner :) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-I-develop-without-recompiling-restarting-after-every-change-tp2226360p2226360.html Sent from the Wicket - User

Re: Can I develop without recompiling/restarting after every change?

2010-05-29 Thread Wouter de Vaal
...@wickettraining.com wrote: From: Jeremy Thomerson jer...@wickettraining.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users@wicket.apache.org Date: Friday, May 21, 2010, 12:17 PM the easiest way to do this is to use the Start class (Start.java) from

Re: Re: Can I develop without recompiling/restarting after every change?

2010-05-29 Thread Dan Haywood
change? Best. --- On Fri, 5/21/10, Jeremy Thomersonjer...@wickettraining.com wrote: From: Jeremy Thomersonjer...@wickettraining.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users@wicket.apache.org Date: Friday, May 21, 2010, 12:17 PM the easiest way

Re: Can I develop without recompiling/restarting after every change?

2010-05-29 Thread David Chang
server. How can I do a similar thing with Tomcat? Any pointers? I am using Tomcat 6.x. Best, David --- On Sat, 5/29/10, Wouter de Vaal wout...@gmail.com wrote: From: Wouter de Vaal wout...@gmail.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users

Re: Can I develop without recompiling/restarting after every change?

2010-05-29 Thread Wouter de Vaal
Vaal wout...@gmail.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users@wicket.apache.org Date: Saturday, May 29, 2010, 9:52 AM If you're using eclipse, use sysdeo: http://www.eclipsetotale.com/tomcatPlugin.html Wouter 2010/5/29 David Chang david_q_zh

Re: Can I develop without recompiling/restarting after every change?

2010-05-29 Thread David Chang
parenet html or child html a few times, each trigger tomcat's restart. Did I miss something? Thanks! --- On Sat, 5/29/10, Wouter de Vaal wout...@gmail.com wrote: From: Wouter de Vaal wout...@gmail.com Subject: Re: Can I develop without recompiling/restarting after every change? To: users

Re: Can I develop without recompiling/restarting after every change?

2010-05-29 Thread bht
, any tips about how to develop out recompiling/restarting after every change? Best. --- On Fri, 5/21/10, Jeremy Thomersonjer...@wickettraining.com wrote: From: Jeremy Thomersonjer...@wickettraining.com Subject: Re: Can I develop without recompiling/restarting after every change

Re: Can I develop without recompiling/restarting after every change?

2010-05-23 Thread ekallevig
Thanks for the reply -- I'll look into that option! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-I-develop-without-recompiling-restarting-after-every-change-tp2226360p2227956.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Can I develop without recompiling/restarting after every change?

2010-05-23 Thread James Carman
Or use jrebel On May 23, 2010 1:41 PM, ekallevig e...@ekallevig.com wrote: Thanks for the reply -- I'll look into that option! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-I-develop-without-recompiling-restarting-after-every-change-tp2226360p2227956.html Sent

Can I develop without recompiling/restarting after every change?

2010-05-21 Thread ekallevig
n00b). As to .css/.js/.java files -- do I need jRebel or something like that to get these files to reload automatically? Thanks for helping out a super-beginner :) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-I-develop-without-recompiling-restarting-after

Re: Can I develop without recompiling/restarting after every change?

2010-05-21 Thread Jeremy Thomerson
in context: http://apache-wicket.1842946.n4.nabble.com/Can-I-develop-without-recompiling-restarting-after-every-change-tp2226360p2226360.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e