Documentation

Documentation versions (currently viewingVaadin 24)

Vaadin Flow Project Setup

Tutorial on openning and debugging a Vaadin project and configure for better auto-complete support.

This part of this tutorial covers downloading a Vaadin application starter, and importing a Vaadin Maven project in IntelliJ. Plus, it explains how to configure IntelliJ for productive development.

Download Vaadin Application Starter

This tutorial uses a pre-configured starter from Vaadin Start. The starter application includes a few essential items:

  • JPA data model consisting of Contact, Company, and Status JPA entities;

  • Spring Data repositories for persisting and retrieving the entities from an embedded H2 database;

  • data.sql file containing some test data;

  • Single, empty view; and a

  • Dockerfile.

To begin, download the starter application, which is a zip file. You can find it here:

Import a Maven Project into IntelliJ

Having downloaded the zip archive file, you’ll first have to extract it somewhere. Any directory is fine: don’t extract it, though, to the download folder since you might unintentionally delete your project later when clearing out old downloads.

In IntelliJ, select Open in the Welcome screen or File menu, as you can see in the screenshot here:

IntelliJ import screen

Next, from the directory tree that is displayed, find the folder where you extracted the files. Select the pom.xml file and click the Open button.

open pom.xml file

Select Open as Project from the dialog, as seen in the following screenshot:

open as project

This imports the project based on the pom.xml file. IntelliJ then imports the project and downloads all necessary dependencies. It can take several minutes, depending on the internet connection speed.

When the import is complete, your project structure should look as seen in the screenshot here:

project file hierarchy

Notice that the Java source files are in the src/main/java folder.

Run a Spring Boot Project in IntelliJ

Spring Boot makes it easier to run a Java web application because it handles starting and configuring the server.

To run your application, run the Application class that contains the main() method that starts Spring Boot. IntelliJ detects automatically that you have a class with a main() method and displays it in the run configurations drop-down.

To start your application, open Application.java and click the play button next to the code line containing the main() method.

After you’ve run the application once from the main() method, it will appear in the run configurations drop-down in the main toolbar (see screenshot). On subsequent runs, you can run the application from there.

run button locations

The first time you start a Vaadin application, it downloads frontend dependencies and builds a JavaScript bundle. IntelliJ indexes all the added dependencies. It won’t need to do that when run subsequently.

You’ll know that your application has started when you see output in the console similar to what you see here:

Tomcat started on port(s): 8080 (http) with context path ''

The development mode in Vaadin also opens a browser window for you automatically. You’ll see a content placeholder and image similar to the screenshot here:

Running application view

Enable Auto Import in IntelliJ

You can configure IntelliJ to resolve imports automatically for Java classes. This makes it easier to copy code from this tutorial into your IDE.

To enable auto import in IntelliJ, open the Preferences/Settings window and navigate to Editor → General → Auto Import.

From there, you can enable the following two options: Add unambiguous imports on the fly; and Optimize imports on the fly. You can see the checkboxes for these choices in the screenshot here:

automatic import settings

Vaadin shares many class names (e.g., Button) with Swing, Java Abstract Window Toolkit (AWT), and JavaFX.

If you don’t use Swing, AWT, or JavaFX in other projects, add the following packages to the Exclude from import and completion list to help IntelliJ select the correct classes, automatically:

  • com.sun

  • java.awt

  • javafx.scene

  • javax.swing

  • jdk.internal

  • sun.plugin

Now that you have a working development environment, you’re ready to start building a web application.

migration assistance

Download free e-book.
The complete guide is also available in an easy-to-follow PDF format.

Open in a
new tab
export class RenderBanner extends HTMLElement {
  connectedCallback() {
    this.renderBanner();
  }

  renderBanner() {
    let bannerWrapper = document.getElementById('tocBanner');

    if (bannerWrapper) {
      return;
    }

    let tocEl = document.getElementById('toc');

    // Add an empty ToC div in case page doesn't have one.
    if (!tocEl) {
      const pageTitle = document.querySelector(
        'main > article > header[class^=PageHeader-module--pageHeader]'
      );
      tocEl = document.createElement('div');
      tocEl.classList.add('toc');

      pageTitle?.insertAdjacentElement('afterend', tocEl);
    }

    // Prepare banner container
    bannerWrapper = document.createElement('div');
    bannerWrapper.id = 'tocBanner';
    tocEl?.appendChild(bannerWrapper);

    // Banner elements
    const text = document.querySelector('.toc-banner-source-text')?.innerHTML;
    const link = document.querySelector('.toc-banner-source-link')?.textContent;

    const bannerHtml = `<div class='toc-banner'>
          <a href='${link}'>
            <div class="toc-banner--img"></div>
            <div class='toc-banner--content'>${text}</div>
          </a>
        </div>`;

    bannerWrapper.innerHTML = bannerHtml;

    // Add banner image
    const imgSource = document.querySelector('.toc-banner-source .image');
    const imgTarget = bannerWrapper.querySelector('.toc-banner--img');

    if (imgSource && imgTarget) {
      imgTarget.appendChild(imgSource);
    }
  }
}

3C607714-1A52-49F0-9CB6-809F7A59F608