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
Currently, SerializationDebugRequestHandler is implemented as a RequestHandler.
Since it runs before UIDLRequestHandler, an and additional servlet Filter is required to execute the serialization test after the UI changes are applied.
The code could probably be simplified by refactoring SerializationDebugRequestHandler into a VaadinRequestInterceptor (introduced in Vaadin 24.2) that provides hooks for request start and end, removing the need for the Filter.
The text was updated successfully, but these errors were encountered:
Currently,
SerializationDebugRequestHandler
is implemented as aRequestHandler
.Since it runs before
UIDLRequestHandler
, an and additional servletFilter
is required to execute the serialization test after the UI changes are applied.The code could probably be simplified by refactoring
SerializationDebugRequestHandler
into aVaadinRequestInterceptor
(introduced in Vaadin 24.2) that provides hooks for request start and end, removing the need for the Filter.The text was updated successfully, but these errors were encountered: