Alex Reichman
Alex Reichman

Reputation: 129

Problems to run Vaadin (maven) sample project on Tomcat

I believe this is specific question regarding Vaadin so if anyone who has an experience with Vaadin can help it will be great. I am new with Vaadin framework. I worked more then 25 years as Oracle Developer and also wrote some Java programs.

My company is actually migrating Oracle Forms application to Java. As a user User interface layer we are using Vaadin and HTML5

I have installed Eclipse IDE for Java Developers Version: 2021-03 (4.19.0) on my Oracle Vbox virtual machine ( Ubuntu 18.04.3 LTS) Also I have added tomcat 8 server to my Eclipse workspace.

Actually I am trying to create my first project based on this document https://vaadin.com/docs/v7/framework/getting-started/getting-started-first-project but I am already facing some issues :)

I have selected Vaadin 7 project for a new project . select Maven Archetype ==> Single module Application window => specified Archetype parameters and clicked finished

After I have selected the project and Run As Maven Install and also compiled Vaadin themes. Here are the issues I am having:

enter image description here

Upvotes: 2

Views: 268

Answers (1)

Marcus Hellberg
Marcus Hellberg

Reputation: 1923

Note that Vaadin 7 is no longer a publicly supported version. If you are starting a new project, you may want to start with the latest LTS version 14.

If you have a Spring Boot-based app (default), you can run it either with mvn spring-boot:run Maven goal or by right-clicking the Application.java file and running it.

This documentation page outlines the steps for importing and running a Vaadin app in Eclipse: https://vaadin.com/docs/v14/guide/start/eclipse

Upvotes: 2

Related Questions