Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Components not getting redrawn
Hi,
I'm sort of new to Vaadin and I've run into an obscured issue.
I have an web application with multiple form components and a db backend (Hibernate)
Components:
Vaadin
GWT
Hibernate
If a user is editing that form and somebody else tries to open it from a different browser, the first user's form components disappear.
I've been doing lots of reading and found this http://njbartlett.name/2011/05/25/concurrent-vaadin.html
It talks about using synchronized methods. I think I've synchronized everything that the application comes in contact with when it draws the objects but still no luck.
Sorry for the vague question but that's basically all the info I have available at the moment.
Found the issue and it was unrelated to Vaadin. I was returning the same objects somewhere else.