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.
Only one instance
I have a application created using vaadin, a list of button A, button B, button C
each button will opened a Tab.
The problem is if I open the application in different computer. the tab that already open will not be opened again
example.
computer 1 opened click button A . it will opened and display Tab A
computer 2 cannot opened Tab A
if computer 2 click button C, as long it is not opened in computer 1, Tab C will be opened and display
computer 1 try to click button C, it will not opened Tab C.
it seem theirs only one instance running in the server.
Sounds like you're using some static fields to store components or their state... If so, don't do this. Maybe this thread will help you:
http://vaadin.com/forum/-/message_boards/message/68586
Cheers, Maik
you are right. I set my TabSheet to static
Thanks, Junald