If I inject spring beans into my request-scoped managed beans I get serialisation issues because the spring beans cannot be serialized. I am talking about CGLIB-Proxies and those things. I was surprised that MyFaces tries to serialize these beans since they are request scoped. The redirectTrackerManager seems to put all sorts of things from the request into the session. I dont know why and so my question is whether any methods will be called on the injected spring beans after deserialisation. If not I can just declare those properties transient otherwise I seem to have a problem. Or is there any other help?

