Hi,
i have a testing application with a Struts Action that uses a proxied bean with transaction demarcation and works fine. The Action object simply creates some persistent objects.
The problem arrises when that Action is invoked by two (or more) simultaneous clients. In this case i get a NonUniqueObjectException. I think it's probably because the proxy i get from the factory is a singleton associated to the same Session for both requests, but i can't set de singleton property to false in TransactionProxyFactoryBean.
Can someone help me with this issue?
Thanks in advance


Reply With Quote