Hi,
I'm trying to set an array of strings as required by the TransactionProxyFactoryBean's proxyInterfaces property. Is that natively supported, or do I need to define my own PropertyEditor. I'm hoping for something like the List syntax.
- PaulCode:<bean id="myProxy" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"> ... other properties ... <property name="proxyInterfaces"> <value>xyz.Interface1</value> <value>xyz.Interface2</value> </propery> </bean>


Reply With Quote