6 tabs connect to the Server, the following ones get blocked. During the day I found out it's not Spring related.
For anyone struggling on this....
https://html.spec.whatwg.org/multipage/server-sent-events.html => Clients that support HTTP's per-server connection limitation might run into trouble when opening multiple pages from a site if each page has an EventSource to the same domain. Authors can avoid this using the relatively complex mechanism of using unique domain names per connection, or by allowing the user to enable or disable the EventSource functionality on a per-page basis, or by sharing a single EventSource object using a shared worker.
A SharedWorker (https://developer.mozilla.org/en-US/docs/Web/API/SharedWorker) can be used to connect to a SSE endpoint and thus, sharing this (single) connection across tabs and not hitting the problem above. The only problem with this is that the support is not great.