Questions tagged [vaadin4spring]

This add-on adds support for Vaadin to Spring and Spring Boot, or Spring support to Vaadin, depending on your point of view.

This add-on adds support for Vaadin to Spring and Spring Boot, or Spring support to Vaadin, depending on your point of view.

https://github.com/peholmst/vaadin4spring

79 questions
2
votes
2 answers

How to create a MVP architecture with Vaadin + Spring?

I'd like to create the following simple MVP architecture: View classes that are simly the vaadin layout, components, styles. nonfunctional. The views should be tied to the current ViewScope/SessionScope, therefore I use @UIScope of…
membersound
  • 81,582
  • 193
  • 585
  • 1,120
1
vote
0 answers

How to run hazelcast session replication using vaadin4spring?

I am writing a simple demo application using hazelcast session replication based on the shared security example mentioned in here https://github.com/peholmst/vaadin4spring. The problem is that if i am starting the application it stays on the login…
1
vote
1 answer

Vaadin Flow &Spring Boot cant find resource via servlet context

Im running in an issue with the new Vaadin Flow issue which makes me crazy the last days, so i hope you guys can help me. Technologies i use: Vaadin Flow Beta 8 Spring Boot 2.0.1.RELEASE Embedded Tomcat Maven as build tool Project layout:…
Ditscheridou
  • 381
  • 1
  • 5
  • 18
1
vote
0 answers

Vaadin Date Validation, 2 or more Validators

I have a problem with a Date Validation. It works only at the begining. After I put a date and delete it once again it stop working. With the String field it works. Besides I wish to use 2 Validators but it detects only one Could someone help me or…
Anna K
  • 1,666
  • 4
  • 23
  • 47
1
vote
1 answer

How to configure Vaadin project to use Vaadin-spring-boot-starter with latest Vaadin framework

I have defined my project based on latest Vaadin Spring boot starter version 2.0.1 as below. I want to use the latest Vaadin framework version 8.1.0.rc2 (released today) for using Tree and new drag and drop features. Is it possible to keep spring…
Govan
  • 2,079
  • 4
  • 31
  • 53
1
vote
1 answer

Set Range in Vaadin DateField when using Converter

I'm using a DateField in Vaadin with a Converter to enable the usage of LocalDateTime of java.time Package. When I'm using the Converter and limit the DateField by setRangeEnd() the DateField always shows an UserError with the message 'Date is out…
Peter Lustig
  • 1,585
  • 1
  • 18
  • 34
1
vote
0 answers

vaadin4spring + application without Spring Boot

I am trying to use vaadin4spring (https://github.com/peholmst/vaadin4spring) to setup security for my Spring application. There is a clear example of how to do this on the author page, but the problem is that the example is using Spring Boot and my…
goroncy
  • 2,053
  • 1
  • 19
  • 16
1
vote
0 answers

Vaadin Servlet conflict from 7.7.1

My project is a spring boot and vaadin project. The spring boot is 1.4.1 with tomcat 8.5.5 It work as well until Vaadin 7.7.0 After I migration Vaadin to any version after 7.7.0 (1,2,3 for now), it fail to start and throw a…
Roy
  • 65
  • 1
  • 7
1
vote
1 answer

Spring boot with vaadin run jetty even though I use tomcat

I try to use Spring boot with Vaadin 7.7.0. By default, spring boot use tomcat if I don not specify. However, I found there is a log as below: 2016-08-26 12:08:49.897 INFO 3240 --- [ main] e.j.JettyEmbeddedServletContainerFactory : Server…
Roy
  • 65
  • 1
  • 7
1
vote
1 answer

spring security and VAADIN

I am developing my spring boot app which is protected by spring security. Here is part of secured config: @Override public void configure(HttpSecurity http) throws Exception { // @formatter:off http //…
Hutsul
  • 1,535
  • 4
  • 31
  • 51
1
vote
1 answer

Vaadin @Push with Vaadin4Spring Security

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' …
turgos
  • 1,464
  • 1
  • 17
  • 28
1
vote
1 answer

No UIProvider has been added and there is no "UI" init parameter Vaadin error after Spring integration

I recived No UIProvider has been added and there is no "UI" init parameter error after I tried dependency injection in Vaadin Framework. I used dedicated Vaadin Spring Addon. I also changed VaadinServlet to SpringVaadinServlet, still doesn't…
Zeezl
  • 123
  • 4
  • 15
1
vote
1 answer

Vaadin4Spring's ManagedSecurity: How to update user list?

I'm using Vaadin 7.5.6, Vaadins Spring 1.0.0, the Vaadin4Spring Managed Security Extension 0.0.7-SNAPSHOT and Tomcat8. Currently, I got a configuration class which implements the AuthenticationManagerConfigurer interface: import…
shinchillahh
  • 515
  • 1
  • 4
  • 22
1
vote
0 answers

Inject Eventbus into Spring Service in Vaadin

I want to inject a session scoped event bus into a Spring service in a Vaadin project with Spring Boot. My Service looks as follows: @Service @EnableVaadinEventBus public class MyService implements EventBusListener { @Autowired …
Tobi
  • 2,001
  • 2
  • 27
  • 49
1
vote
1 answer

How do I get a LazyComboBox to select an item from another page in Vaadin?

I am using Vaadin 7.5.5 and Viritin 1.35. I have implemented a LazyComboBox that is backed by a Spring Data JPA service call and repository. My basic setup for the LazyComboBox is: initList( Site.class, new…
cbmeeks
  • 11,248
  • 22
  • 85
  • 136