见教学手册
Serializing Entities:(在会话中保存的所有内容都是序列化和反序列化).
原文链接:https://www.f2er.com/php/132973.htmlSerializing entities can be problematic and is not really recommended,at least not as long as an entity instance still holds references to proxy objects or is still managed by an EntityManager.
有一个技术限制,当一个实体被代理时,避免私有属性被序列化(延迟加载的实体被代理).
这意味着您必须避免为要序列化的实体使用私有属性(而不是使用受保护的实体).
另外,如果在序列化时间内没有加载惰性的实体,那么在解除序列化之后它将无法加载.所以你必须在序列化之前确保实体是完整的.