Since I switched to Vaadin 20.0.1 (from v18.0.2) EACH time after I log into my application I first get a page that displays:
self.additionalManifestEntries = [
{ url: 'icons/icon-144x144.png', revision: '-1456135562' },
{ url: 'icons/icon-192x192.png', revision: '-1333786034' },
{ url: 'icons/icon-512x512.png', revision: '1931390955' },
{ url: 'icons/icon-16x16.png', revision: '-1417519116' },
{ url: 'icons/icon-32x32.png', revision: '-2087744108' },
{ url: 'offline-stub.html', revision: '203115787' },
{ url: 'manifest.webmanifest', revision: '1979121418' },
{ url: './styles/offline.css', revision: '1252570030' },
{ url: './images/offline.png', revision: '1252570030' }
];
I then need to reload the URL. This time (since I am already logged in) it directly brings me to my application's entry page and from then on things work ok. I also noted that this happens only for the very first login (i.e. the first user that logs in) and the URL shown is: http://localhost:8080/sw-runtime-resources-precache.js.
But what is the above trying to convey to me? Why is this appearing? And - since it's annoying: how can I tell this to "get lost!" `
Later addendum, since the code snippet is too long for a comment:
My current implementation (which I copied from some Vaadin example) reads like this:
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.security.web.savedrequest.HttpSessionRequestCache;
class CustomRequestCache extends HttpSessionRequestCache
{
@Override
public void saveRequest(HttpServletRequest request, HttpServletResponse response) {
if (!SecurityUtils.isFrameworkInternalRequest(request)) {
/* Saves unauthenticated requests so we can redirect the user to the page they were trying to access once they’re logged in: */
super.saveRequest(request, response);
}
}
}
Later addition: this bug/effect resurfaced with v22. I thus adapted the title of the question.