There is an add on https://vaadin.com/directory/component/cleanupservlet-add-on/discussions for cleanup of the session which is supported till Vaadin 8+
Can it be still used for Vaadin 14 or 23? Any equivalent available ?
There is an add on https://vaadin.com/directory/component/cleanupservlet-add-on/discussions for cleanup of the session which is supported till Vaadin 8+
Can it be still used for Vaadin 14 or 23? Any equivalent available ?
The add-on will not work for Vaadin 14 or 23, as it's relying on the CleanupServletService
implementation being in the same package as VaadinServletService
, which is com.vaadin.server
with Vaadin 7 and 8. Since Vaadin 10, VaadinServletService
is located in the package com.vaadin.flow.server
. You could probably take the add-on's sources and modify it to work with Vaadin 10 and later.