Re: Wicket hot reloading - Proof of concept

2013-08-04 Thread Cedric Gatay
Hi there, I've taken a few hours this week end to work on this. It can now reload classes without restarting the application (even the homepage, with a workaround). I tested it on a medium sized application and it seems to work well (except classpath errors with autocompile). With IDE compilation

Re: Wicket hot reloading - Proof of concept

2013-08-02 Thread Martin Grigorov
.1842946.n4.nabble.com/Wicket-hot-reloading-Proof-of-concept-tp4660575p4660627.html Sent from the Forum for Wicket Core developers mailing list archive at Nabble.com.

Re: Wicket hot reloading - Proof of concept

2013-08-02 Thread Michael Mosmann
Am 01.08.13 09:55, schrieb Martin Grigorov: Michael, On Thu, Aug 1, 2013 at 9:48 AM, Michael Mosmann mich...@mosmann.de wrote: Only to be sure.. You know the run-jetty-run eclipse plugin? All I know about this project is that Eelco started it. I think this project is very usefull. But

Re: Wicket hot reloading - Proof of concept

2013-08-02 Thread Cedric Gatay
Hi Martin, I will collect what has changed and log it out. I can add a property to auto restart the application as well. The current status of this POC is unbounded, I only tested it with small apps and I don't know if it will properly reload page classes for example if we don't reinit the

Re: Wicket hot reloading - Proof of concept

2013-08-01 Thread Michael Mosmann
Only to be sure.. You know the run-jetty-run eclipse plugin? Am 31.07.13 17:29, schrieb Cedric Gatay: Hi all, today I did a small Proof Of Concept of autocompile and hot reload fonctionnality for Wicket. The implementation is inspired by Xavier Hanin's work on restx (restx.io) (he inspired

Re: Wicket hot reloading - Proof of concept

2013-08-01 Thread Cedric Gatay
No I didn't know the run-jetty-run eclipse plugin, I am an Intellij IDEA user ;) I think that it could be a good feature if we allow simple hot reloading during development. __ Cedric Gatay (@Cedric_Gatay http://twitter.com/Cedric_Gatay) http://code-troopers.com | http://www.bloggure.info |

Re: Wicket hot reloading - Proof of concept

2013-08-01 Thread Martin Grigorov
Michael, On Thu, Aug 1, 2013 at 9:48 AM, Michael Mosmann mich...@mosmann.de wrote: Only to be sure.. You know the run-jetty-run eclipse plugin? All I know about this project is that Eelco started it. But looking at their page I see they also recommend DCEVM [1]. I use it since a while and I

Re: Wicket hot reloading - Proof of concept

2013-08-01 Thread Martin Grigorov
On Thu, Aug 1, 2013 at 9:53 AM, Cedric Gatay ced...@gatay.fr wrote: No I didn't know the run-jetty-run eclipse plugin, I am an Intellij IDEA user ;) I think that it could be a good feature if we allow simple hot reloading during development. Yes, the idea is to facilitate the development.

Re: Wicket hot reloading - Proof of concept

2013-08-01 Thread tetsuo
I use JRebel (I've bought it when a perpetual license was still available), and it works great. If you use Scala, or do non-commercial development, it's free. But just using Jetty already saves you lots of time, since restarting the whole server takes milliseconds. Wicket and Spring are pretty

Re: Wicket hot reloading - Proof of concept

2013-08-01 Thread Decebal Suiu
-wicket.1842946.n4.nabble.com/Wicket-hot-reloading-Proof-of-concept-tp4660575p4660627.html Sent from the Forum for Wicket Core developers mailing list archive at Nabble.com.

Re: Wicket hot reloading - Proof of concept

2013-08-01 Thread Dan Retzlaff
/wicket-plugin [2] https://github.com/decebals/pf4j -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-hot-reloading-Proof-of-concept-tp4660575p4660627.html Sent from the Forum for Wicket Core developers mailing list archive at Nabble.com.

Re: Wicket hot reloading - Proof of concept

2013-08-01 Thread Cedric Gatay
/decebals/pf4j -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-hot-reloading-Proof-of-concept-tp4660575p4660627.html Sent from the Forum for Wicket Core developers mailing list archive at Nabble.com.

Wicket hot reloading - Proof of concept

2013-07-31 Thread Cedric Gatay
Hi all, today I did a small Proof Of Concept of autocompile and hot reload fonctionnality for Wicket. The implementation is inspired by Xavier Hanin's work on restx (restx.io) (he inspired himself from PlayFramework!). You can find the implementation on the following github repo :