Re: T5 Class Reloading & InvalidationListener

2012-03-15 Thread Norman Franke
Ah, yes. Somehow my Tapestry live reloading stopped working under Tomcat 6. Off to fix that problem... Norman Franke Answering Service for Directors, Inc. www.myasd.com On Mar 15, 2012, at 5:45 PM, Josh Canfield wrote: It sounds like you have Tomcat set to watch for changes to your webapp

Re: T5 Class Reloading & InvalidationListener

2012-03-15 Thread Josh Canfield
It sounds like you have Tomcat set to watch for changes to your webapp and reload the whole context. If tomcat is reloading your context and giving you that message, then you aren't actually using tapestry's class reloading feature, right?. The InvalidationEventHub calls objectWasInvalidated when

T5 Class Reloading & InvalidationListener

2012-03-15 Thread Norman Franke
I'm using Tapestry 5.2.5 I have a library I'm using that makes use of Apache Commons IO. As a result, I need to call FileCleaner.exitWhenFinished() to stop the thread, or else my application's memory usage grows about 300 MB each time Tapestry does a class reload on my development box. Af

Re: [T5] class reloading for pages, templates, components possible only?

2008-11-16 Thread Thiago H. de Paula Figueiredo
Em Sun, 16 Nov 2008 13:45:54 -0300, aldana <[EMAIL PROTECTED]> escreveu: Is live class reloading supposed to work with pages/templates/components only or do I need to configure something to enable this for all classes? Short answer: just for pages, templates, components and mixins, i.e. clas

Re: [T5] class reloading for pages, templates, components possible only?

2008-11-16 Thread SergeEby
mplementation of a Dao I don't see any changes on webapp. > > Is live class reloading supposed to work with pages/templates/components > only or do I need to configure something to enable this for all classes? > -- View this message in context: http://www.nabble.com/-T5--class-

[T5] class reloading for pages, templates, components possible only?

2008-11-16 Thread aldana
do I need to configure something to enable this for all classes? - manuel aldana aldana((at))gmx.de software-engineering blog: http://www.aldana-online.de -- View this message in context: http://www.nabble.com/-T5--class-reloading-for-pages%2C-templates%2C-components-possible

Re: T5: Class reloading not working

2008-09-09 Thread Thiago H. de Paula Figueiredo
Em Tue, 09 Sep 2008 11:17:46 -0300, Sven Homburg <[EMAIL PROTECTED]> escreveu: sorry, dont mean "spread", mean "advantage" Faster startup time Faster (at least it is my impression, no tests made) More modular Can be used embedded in an application ... Thiago ---

Re: T5: Class reloading not working

2008-09-09 Thread Sven Homburg
sorry, dont mean "spread", mean "advantage" 2008/9/9 Sven Homburg <[EMAIL PROTECTED]> > i know its off topic, and i dont want to start a discussion about what is > better, > only want know the spread of tomcet against jetty !? > > 2008/9/9 Thiago H. de Paula Figueiredo <[EMAIL PROTECTED]> > > Em

Re: T5: Class reloading not working

2008-09-09 Thread Sven Homburg
i know its off topic, and i dont want to start a discussion about what is better, only want know the spread of tomcet against jetty !? 2008/9/9 Thiago H. de Paula Figueiredo <[EMAIL PROTECTED]> > Em Tue, 09 Sep 2008 10:40:05 -0300, Inge Solvoll <[EMAIL PROTECTED]> > escreveu: > > That's it then.

Re: T5: Class reloading not working

2008-09-09 Thread Thiago H. de Paula Figueiredo
Em Tue, 09 Sep 2008 10:40:05 -0300, Inge Solvoll <[EMAIL PROTECTED]> escreveu: That's it then. All my page and component classes are under WEB-INF/classes. So I need to either switch to Jetty or find a way to compile all my T5 classes to a jar file under WEB-INF/lib... I think almost anyon

Re: T5: Class reloading not working

2008-09-09 Thread Inge Solvoll
That's it then. All my page and component classes are under WEB-INF/classes. So I need to either switch to Jetty or find a way to compile all my T5 classes to a jar file under WEB-INF/lib... By the way, I did of course annotate the component field. This is not a problem with syntax, I have a lot o

Re: T5: Class reloading not working

2008-09-09 Thread Thiago H. de Paula Figueiredo
Em Tue, 09 Sep 2008 10:09:15 -0300, Inge Solvoll <[EMAIL PROTECTED]> escreveu: "Embedded component 'keyField' has no type. You should specify a type in the component template, or define the component inside class com.myapp.tapestry5.pages.admin.system.SettingsEdit using the @Component annota

T5: Class reloading not working

2008-09-09 Thread Inge Solvoll
Hi! 1. I created a page and tested that it viewed nicely in my browser 2. I added a component via a private instance variable with type TextField in my page class 3. I added a reference to that component in my .tml. 4. I get the following error in the browser, indicating that tapestry can't see my

Re: T5:class reloading problem with Tomcat 6

2008-06-26 Thread Howard Lewis Ship
We should capture these notes on the Wiki, or better yet, on the Tomcat deployment notes page. On Wed, Jun 25, 2008 at 7:30 AM, Geoff Callender <[EMAIL PROTECTED]> wrote: > Yep, that's normal. It's an age-old JVM/class-loading issue (try googling > it). Try running with these java options (or e

Re: T5:class reloading problem with Tomcat 6

2008-06-25 Thread Geoff Callender
Yep, that's normal. It's an age-old JVM/class-loading issue (try googling it). Try running with these java options (or even bigger numbers if you have the memory): -XX:MaxNewSize=96m -XX:MaxPermSize=96m. On 25/06/2008, at 11:31 PM, Angelo Chen wrote: hi, althought reloadable="true" wor

Re: T5:class reloading problem with Tomcat 6

2008-06-25 Thread Angelo Chen
hi, althought reloadable="true" works, but i have memory problems now which not there before: Exception in thread "Timer-5" java.lang.OutOfMemoryError: PermGen space [ERROR] RequestExceptionHandler Processing of request failed with uncaught exception: PermGen space java.lang.OutOfMemoryError: Pe

Re: T5:class reloading problem with Tomcat 6

2008-06-25 Thread Angelo Chen
hi, i added reloadable="true", it works, but another error comes out: [ERROR] RequestExceptionHandler Processing of request failed with uncaught exception: Context values (which are added to the request URL) may not be null or blank. org.apache.tapestry5.runtime.ComponentEventException: any id

Re: T5:class reloading problem with Tomcat 6

2008-06-25 Thread Geoff Callender
Does setting reloadable="true" in the Context element of context.xml fix it? On 25/06/2008, at 6:58 PM, Angelo Chen wrote: Hi, I use tomcat 6 and IDEA IDE, in the IDEA I set the project's exploded directory to: /Users/abc/myapp/ROOT and the above directory is mapped as an entry under $

T5:class reloading problem with Tomcat 6

2008-06-25 Thread Angelo Chen
Hi, I use tomcat 6 and IDEA IDE, in the IDEA I set the project's exploded directory to: /Users/abc/myapp/ROOT and the above directory is mapped as an entry under $CATALINA_HOME. in the IDEA i did not run or debug, just compile/build, the T5 picks up any changes I made to the template file, but

Re: T5 class reloading

2007-06-05 Thread Martin Grotzke
On Tue, 2007-06-05 at 09:00 +0200, Martin Grotzke wrote: > On Wed, 2007-05-30 at 09:54 +0200, Francois Armand wrote: > > Le mercredi 30 mai 2007 à 07:28 +, Martin Grotzke a écrit : > > > For me changed classes are not picked up automatically, when running > > > mvn jetty6:run... > > > > Well..

Re: T5 class reloading

2007-06-05 Thread Martin Grotzke
On Wed, 2007-05-30 at 09:54 +0200, Francois Armand wrote: > Le mercredi 30 mai 2007 à 07:28 +, Martin Grotzke a écrit : > > For me changed classes are not picked up automatically, when running > > mvn jetty6:run... > > Well... I encounter some strange behaviour with mvn jetty:run and class > r

Re: T5 class reloading

2007-05-30 Thread Francois Armand
Le mercredi 30 mai 2007 à 07:28 +, Martin Grotzke a écrit : > For me changed classes are not picked up automatically, when running > mvn jetty6:run... > If it's working for you, what's your setup, or did you do anything > special to support class reloading? Is it connected with a context > relo

Re: T5 class reloading

2007-05-30 Thread Martin Grotzke
On Wed, 2007-05-30 at 13:44 +0700, Ted Steen wrote: > Somewhere in the documentation it says that all pages are components, > so i guess that all components and pages (that are special kinds of > components) will automatically reload. Then the question is what's required to get it to work. For me

Re: T5 class reloading

2007-05-29 Thread Ted Steen
Somewhere in the documentation it says that all pages are components, so i guess that all components and pages (that are special kinds of components) will automatically reload. 2007/5/29, Martin Grotzke <[EMAIL PROTECTED]>: Hi, is the class reloading in T5 limited to component classes as descr

T5 class reloading

2007-05-29 Thread Martin Grotzke
Hi, is the class reloading in T5 limited to component classes as described at http://tapestry.apache.org/tapestry5/tapestry-core/guide/component-classes.html: "However, class reloading only applies to component classes." Although, at http://tapestry.apache.org/tapestry5/tapestry-core/guide/reload

RE: T5 : class reloading error mvn jetty:run eclipse

2007-03-31 Thread Jonathan Barker
: Alexandru Dragomir [mailto:[EMAIL PROTECTED] > Sent: Saturday, March 31, 2007 7:31 AM > To: Tapestry users > Subject: T5 : class reloading error mvn jetty:run eclipse > > Hello! > > I can't get to work the class reloading. > > I'm using eclipse 3.2.0 WTP

T5 : class reloading error mvn jetty:run eclipse

2007-03-31 Thread Alexandru Dragomir
Hello! I can't get to work the class reloading. I'm using eclipse 3.2.0 WTP and running mvn jetty:run from inside eclipse. Also i'm using the pom.xml generated by the quickstart archetype. Every time i make a change to a page class i'm getting the error : org.maven.ide.eclipse.Maven2Executo