"vladimir.kovalyuk" wrote : 1. Does JPA persistence context propagation rules work for Seam-managed conversation-scoped Beans?
No, they are different. JPA persistence context propagation rules are complex. SMPC propgation is simple. You will get the same PC for the length of that conversation injected into the bean. So if you aren't in a long running conversation, it will be the same PC for the whole of the request.
anonymous wrote : 2. Is there exceptional behavior in the case of EntityHome?
No
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123620#4123620
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4123620
Hello,
I working with proxies build with ProxyFactory method.
How to us it is describe in javadoc.
When I want to serialize/deserialize it, everything seems to be ok except that only proxy instance is serialized, not inner objects.
Eg.
Object "A" contains an instance of "B"
After serialization/deserialization, instance of "B" in "A" is null
Something to configure or is it a bug ?
When I look at this code :
public static SerializedProxy makeSerializedProxy(Object proxy)
throws java.io.InvalidClassException
{
Class clazz = proxy.getClass();
return new SerializedProxy(clazz, ProxyFactory.getFilter(clazz),
ProxyFactory.getHandler(clazz));
}
I don't understand how serialization can keep inner objects ...
Damien
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123615#4123615
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4123615