Re: Reflection

2003-08-01 Thread Ted Husted
The framework itself only uses reflection to transfer the request parameters to ActionForm properties. When people say Struts uses reflection heavily, they usually mean creating output pages with the the custom tags. (It would be interesting to see such benchmarks run against Struts applications

Re: Reflection

2003-08-01 Thread Craig R. McClanahan
On Fri, 1 Aug 2003, Ted Husted wrote: Date: Fri, 01 Aug 2003 06:43:32 -0400 From: Ted Husted [EMAIL PROTECTED] Reply-To: Struts Developers List [EMAIL PROTECTED] To: Struts Developers List [EMAIL PROTECTED] Subject: Re: Reflection The framework itself only uses reflection to transfer

Re: Reflection

2003-08-01 Thread Chris Nokleberg
Ted Husted wrote: Gavin King, creator of Hibernate and an avid CGLIB user, isn't sure whether CGLIB, as it stands, would be much help to BeanUtils. The trick would be to get the CGLIB team interested in helping with BeanUtils. This would not only benefit the Struts JSP tags, but every other

Re: Reflection

2003-08-01 Thread Craig R. McClanahan
On Fri, 1 Aug 2003, Chris Nokleberg wrote: Date: Fri, 01 Aug 2003 09:59:31 -0700 From: Chris Nokleberg [EMAIL PROTECTED] Reply-To: Struts Developers List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Reflection Ted Husted wrote: Gavin King, creator of Hibernate and an avid CGLIB

Re: Reflection

2003-08-01 Thread Chris Nokleberg
Craig R. McClanahan wrote: Hi Chris, (I get an index out of bounds exception on that link ... :-) FWIW looking at the logs I think you may have mistyped... That's good news! The best place to get involved in BeanUtils, of course, is over on commons-dev, but there are lots of interested

Reflection

2003-07-31 Thread Vic Cekvenich
http://www.theserverside.com/home/thread.jsp?thread_id=20655 A good paper on performance, but implies that Struts reflection is slow. I disagree, but.. would not mind converting some of the Struts to CGLib, if there is a comiter who would review and integrate, should it come on agenda. .V

RE: Reflection

2003-07-31 Thread Paananen, Tero
http://www.theserverside.com/home/thread.jsp?thread_id=20655 A good paper on performance, but implies that Struts reflection is slow. I disagree, but.. would not mind converting some of the Struts to CGLib, if there is a comiter who would review and integrate, should it come on agenda

Re: Very OT: Java Reflection?

2003-01-30 Thread Vic Cekvenich
Reflection? Someone care to help me out on OT reflection? Here is the situation: My base class has a reflection (in execute) that does this : Method eventMethod = this.getClass().getMethod(methodName, args); and same class has onDefaultExec() {} (or full code here: http://cvs.sourceforge.net

Re: Very OT: Java Reflection?

2003-01-30 Thread Vic Cekvenich
cls = cls.getSuperClass(); } Please post the answer if you find a good one. -Max - Original Message - From: V. Cekvenich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 4:12 AM Subject: Very OT: Java Reflection? Someone care to help me out on OT reflection?

Re: Very OT: Java Reflection?

2003-01-30 Thread Craig R. McClanahan
On Wed, 29 Jan 2003, V. Cekvenich wrote: Date: Wed, 29 Jan 2003 07:12:47 -0500 From: V. Cekvenich [EMAIL PROTECTED] Reply-To: Struts Developers List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Very OT: Java Reflection? Someone care to help me out on OT reflection? Here

Very OT: Java Reflection?

2003-01-29 Thread V. Cekvenich
Someone care to help me out on OT reflection? Here is the situation: My base class has a reflection (in execute) that does this : Method eventMethod = this.getClass().getMethod(methodName, args); and same class has onDefaultExec() {} (or full code here: http://cvs.sourceforge.net/cgi-bin

Re: Very OT: Java Reflection?

2003-01-29 Thread V. Cekvenich
Never mind, the base method had error, works as per Java. V. Cekvenich wrote: Someone care to help me out on OT reflection? Here is the situation: My base class has a reflection (in execute) that does this : Method eventMethod = this.getClass().getMethod(methodName, args); and same class has

Re: Very OT: Java Reflection?

2003-01-29 Thread Max Cooper
post the answer if you find a good one. -Max - Original Message - From: V. Cekvenich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 4:12 AM Subject: Very OT: Java Reflection? Someone care to help me out on OT reflection? Here is the situation: My base class