singleton validators and converters

2006-12-08 Thread Iordanov, Borislav \(GIC\)
Hi, Is there a standard way/practice to have singleton validators and converters? Those are mostly stateless and in a large application with aggressive input validation, it would make sense to avoid creating them on the fly each time and for each user. Thanks, Bolerio

RE: singleton validators and converters

2006-12-08 Thread Julian Ray
12:48 PM To: MyFaces Discussion Subject: singleton validators and converters Hi, Is there a standard way/practice to have singleton validators and converters? Those are mostly stateless and in a large application with aggressive input validation, it would make sense to avoid creating them

RE: singleton validators and converters

2006-12-08 Thread Iordanov, Borislav \(GIC\)
08, 2006 1:00 PM To: 'MyFaces Discussion' Subject: RE: singleton validators and converters Wouldn't singletons need to be multi-threaded otherwise you will get probems with concurrency. Would a pooled resource pattern make more sense if you validators/converters are costly to create

Re: singleton validators and converters

2006-12-08 Thread Craig McClanahan
On 12/8/06, Iordanov, Borislav (GIC) [EMAIL PROTECTED] wrote: No problem with concurrency, as I said they have no state. A lot of patterns would make sense, but JSF API/taglib doesn't seem to facilitate any of them, hence my question. Object creation and GC overhead was a very significant