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

If got an problem with the addon, that occurs when I develop in Eclipse and save code changes. These changes trigger an redeploy of the servlet which results in the...

This is caused by constructor of class SpringVaadinSystemMessagesProvider which get MessageSource bean by type. As I remember the Spring application context uses MessageSource bean which has the name "messageSource", maybe...

I got the following stacktrace trying to run the addon in liferay 6.1.1, I made the adjustments for portlets indicated in the [documentation site](http://vaadin.xpoft.ru/#portlet), but still can't make it work,...

If I try to reset my application using the query parameter 'restartApplication', I get the following Exception: ... Caused by: com.vaadin.server.ServiceException: java.lang.IllegalStateException: UI id has already been defined at com.vaadin.server.VaadinService.handleExceptionDuringRequest(VaadinService.java:1387)...

Hi, if I set my error view with setErrorView(MyView.class), when Navigator has to redirect to the error view, it creates a new instance of MyView.class instead of getting the autowired...

Hi! I take sample from http://static.springsource.org/spring-security/site/docs/3.1.x/reference/springsecurity-single.html#d0e1837 and run it with vaadin-spring-integration add-on. These code from example: Authentication request = new UsernamePasswordAuthenticationToken(name, password); Authentication result = am.authenticate(request); SecurityContextHolder.getContext().setAuthentication(result); After true authentication...