i get suddenly the issue: Cannot render error page for request [/login] and exception [Unregistered node was not found based on its id. The tree is most likely corrupted.]
All pages are blank but i cant find any issue or have glue where to start.
That part looks fine though the @PostConstruct method is probably redundant when you use constructor injection. You could just as well do the initialization directly in the constructor.
I suspect nobody will be able to make any guesses on how to help you without seeing those errors from the console.
Put a breakpoint there and you will find out . Each user should get their own instance of the view class so the instances should be constructed on demand.
I think @PostConstruct will be run almost immediately after the constructor so that shouldn’t make any difference. But that’s again something you can easily verify in your specific case by setting a breakpoint.