You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String, Integer, Long, Boolean... Such typed value objects can be skipped from updating in ServletRequestAttributes#updateAccessedAttributes() , or skipped from being added to #sessionAttributesToUpdate via #getAttribute()
This is good optimization when the session is full of values. Do less serialization and I/O (sometimes none) in session management.
In which of the two methods is it better to place the "skip" logic?