For a grails app we're using the spring security plugin, and planning on using an amazon redis store for user session storage. This is functional, except currently the user session object that's serialized to the store includes all the properties, including password, in the clear.
It doesn't seem like the password property should be serialized anyway - is that right? If so, is there a way to exclude properties from session serialization with spring security in grails?