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.
Step by step to configure GWT development mode in IDEA
Hi,
I am looking for an explanation on how we could setup the GWT development mode in IDEA to debug custom Vaadin components. I searched on the web and found no valuable information.
Thanks!
S.
This can be done with some trick.
First you should create some stub class extended from com.google.gwt.core.client.EntryPoint. For example lets say you created class with name "com.Stub".
Then you should add "<entry-point class='com.Stub' />" into widgetset descriptor. This should be enough, to allow IDEA GWT plugin to start GWT development mode configuration. Then you start this configuration in debug mode, you should be able to debug your widgetset client code.