I am new to Vaadin. I like to use the Grid component to edit a list of beans. When I edit in cell the value the changes get not applied to my beans. So what I missing here
I found the problem. I am using for my Bean "
Lombok " which generates automatically the Setter, Getters, Equals and HashCode in Bytecode. If I remove the @Data annotation of Lombok and just use @Gettes and @Setter it works. It looks like that with the Generated Equals or HashCode Method from Lombok it does not work. Others seems to have similar problems -
link . Does somebody experience same problems with Lombok and Vaadin?