I'm new to Spring and Vaadin. I'm trying to go through tutorial for views navigation.
I'd like to enable @Push in future to update views periodically with data fetched from DB.
The project is very, very simple. I use no configuration class nor any…
I created a simple test application:
import java.util.logging.Logger;
import org.apache.catalina.Context;
import org.apache.catalina.LifecycleException;
import org.apache.catalina.startup.Tomcat;
public class Main {
private final static Logger…
We have a Vaadin 8 application using @Push functionality to push data to the UI which should be loaded asynchronously.
To load the data, we create a Runnable which is executed in an Executor and then makes a callback to a function in the UI/View,…
Vaadin 7.4 introduced Grid, a brand-new component to display tabular data. In my application I have a view that contains a Grid. The grid is populated with a dynamic data (there is a rest service that populates the grid container).
That said, I…
I am using Wildfly 8.1 and Vaadin 7.3.beta1.
I am starting an EntityManager in a @WebFilter and managing the transaction at that layer, that is folowing the entitymanager-per-request pattern recommended for the usage of the JPAContainer…
Is anyone using Vaadin @Push with vaadin-spring-boot-starter and Vaadin4Spring Security extension?
Here is Vaadin related dependencies on our project:
compile 'com.vaadin:vaadin-client-compiled:7.5.8'
compile 'com.vaadin:vaadin-client:7.5.8'
…
I´m using Vaadin 7.5.8 on Wildfly 9.0.2. In our application we need Push support, so I´ve added the maven dependency
com.vaadinvaadin-push
and added PushMode Parameter to servlet…
I am getting the below error when Vaadin 8 Push enabled with Spring Boot version 1.5.1.RELEASE.
java.lang.NoClassDefFoundError: org/springframework/boot/context/embedded/ServletListenerRegistrationBean
at…
My web-application developed on Vaadin - Servlet using Tomcat server.
When user clicks logout link, session timeout error is coming and then after some time it is automatically redirecting to login page.
Previously the redirection was so fast that…
We have Vaadin Push enabled with @Push(transport = Transport.WEBSOCKET_XHR).
When UI detached, we see the below exception at the log.
Seems like it does not impact anything other than errors at the log. Do you know how to close the connection…
I'm trying to update a grid in Vaadin after a change has been made to the grid from a different UI instance.
To elaborate, I have two different UI instances, UI1 and UI2 (tabs from two different browsers). These UI instances contain a view which…
I am having a multi row single column table which is to be populated from a List. And this List is populated via a modal window and when ever there is an update in this List the table has to be updated.
How do I achieve this…
I have a working application with Vaadin and Spring (+Security). I'm now trying to dynamically push updates to the client interfaces using vaadin-push.
I want to create a "view" that is the same for all clients. The view should get a counter…