Re: S2: TypeConverters and Spring Injection

2008-08-27 Thread Jeromy Evans
[EMAIL PROTECTED] wrote: Is there something unique about the StrutsTypeConverter class that causes auto-wire by name to work successfully (without even a bean definition of the converter), but not @Transactional/@PersistenceContext annotations? Thank you. It's a guess, but I would say yes.

S2: TypeConverters and Spring Injection

2008-08-26 Thread nielsene
I've run across something confusing to me in getting Dependency Injection with Spring to work with Type Converters under Struts 2. I tried creating a StrutsTypeConverter subclass that had a @Transactional annotation with a @PersistenceContext on an EntityManager property (via the setter). The Conv