spring-vaadin icon indicating copy to clipboard operation
spring-vaadin copied to clipboard

Spring and Vaadin integration

Results 16 spring-vaadin issues
Sort by recently updated
recently updated
newest added

I am running the Vaadin Spring Security sample from https://github.com/xpoft/vaadin-samples/tree/master/spring-security I added a @Push(transport=Transport.STREAMING) annotation to the MyUI class. I am able to log in but I get weird navigation...

If I define few SpringVaadinServlets in my war with different "contextConfiguration" only one of them works. I guess the reason is static nature of SpringApplicationContext. ``` java public class SpringApplicationContext...

Hi I've implemented SpringSecurityNavigator inspired by ShiroSecurityNavigator. They both inherit from SecurityAwareDiscoveryNavigator (access logic re-factored from ShiroSecurityNavigator) Please accept. Thanks Alexander

I noticed a memory leak in the DiscoveryNavigator class. The DiscoveryNavigator class contains the static field "views" with a list of ViewCache objects. This list gets initialized in the initViews...

Hi, thx for this great addon. Is there any plan to add an event bus support like google guava ... ?

When added @Push annotation to ui class and try to navigate another view i'm getting this error: ``` org.springframework.security.authentication.AuthenticationCredentialsNotFoundException: An Authentication object was not found in the SecurityContext ``` ```...

Hi All, I try to deploy my war file into Tomcat server,previously tomcat server is working fine but now i got a tomcat server java null point exception. please find...

Hiya, Thank you for a great add-on! Unfortunately there's been a change in the upcoming Vaadin release (7.3.0) that is incompatible with this add-on as it stands. This is because...

I develop a Vaadin application with Java based login (to avoid any actual webpages in my application): ``` final Subject currentUser = SecurityUtils.getSubject(); final AuthenticationToken token = new UsernamePasswordToken(username, password);...

Currently I have to call super.getNavigator().setErrorView(new ErrorView()); to add my view as an error view (I stand corrected). I would expect something like a @VaadinErrorView annotation, which can only be...