Vaadin 8 & SpringBoot 2.x

Hello,

is there a possibility to use Vaadin8 with SpringBoot 2.x?
It seems that vaadin-spring-boot 3.2.1 doesn´t supports it…

-Michael

According to my understading it should work. Our Bakery app starter for Vaadin 8 Spring version is using the following:

	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-parent</artifactId>
	<version>2.2.0.RELEASE</version>

Do you have all the needed modules?

	<dependency>
		<groupId>com.vaadin</groupId>
		<artifactId>vaadin-spring-boot-starter</artifactId>
		<version>${vaadin-spring.version}</version>
	</dependency>
	<dependency>
		<groupId>com.vaadin</groupId>
		<artifactId>vaadin-spring-boot</artifactId>
		<version>${vaadin-spring.version}</version>
	</dependency>
	<dependency>
		<groupId>com.vaadin</groupId>
		<artifactId>vaadin-spring</artifactId>
		<version>${vaadin-spring.version}</version>
	</dependency>
	<dependency>
		<groupId>com.vaadin</groupId>
		<artifactId>vaadin-spring-security</artifactId>
		<version>${vaadin-spring.version}</version>
	</dependency>