
Explore the essential Vaadin components, including labels, check boxes, grids with grid selection, drag-and-drop, panels, images, and data binding and validation, plus popular horizontal and vertical layouts.
Install Java 9 on Windows, download the JDK 9 installer, run it, configure JAVA_HOME and PATH, verify the Java version, and learn the basic setup to run Java apps.
Install eclipse oxygen on windows 64-bit, unzip and run, set a workspace in an eclipse maven folder, and use this open source Java IDE with code completion and error checking.
Learn to set up Vaadin 8 in Eclipse with a Maven project, install the plugin, configure run/debug, and build a UI with a clickable button that updates a label.
Create and customize Vaadin labels in a vertical layout, display text with simple and pre-formatted content, apply bold styling, use newline characters, and adjust label height.
Learn to create Vaadin text fields, set default values, enforce a 20 character limit, and implement a responsive length counter via a Java 8 change event and the dashing style.
Learn how to create Vaadin 8 buttons, attach click listeners via lambda or alternative, update a label on click, and style the button with a custom style named 'custom'.
Explore Vaadin 8 checkboxes, including single checkboxes and checkbox groups, their boolean state, how to get/set values, and handle value change events with listeners.
Explore Vaadin groups by building radio button groups and checkbox groups, configuring single and multiple selections, adding items, and excluding specific options in layouts.
Create and customize a Vaadin 8 combo box, populate it with a list of boxers, and dynamically add items using an item handler to reflect user input.
Explore the grid component, compare it to a table, model a boxer with name and fights, populate a grid with boxers, enable inline editing, and customize headers with hide mode.
Explore grid selection in Vaadin 8 with Maven, enable single and multiple selections, and wire a delete button to remove all chosen boxers from the grid.
Learn to implement the Vaadin 8 tree component to represent hierarchical data, with expand and collapse, data binding, and selection with notifications.
Explore the Vaadin top sheet component, a tabbed container that switches between inner components in the main display, with multi-tab navigation and change event handling.
Master the Vaadin vertical layout, a 100 percent width container with undefined height that stacks components. Practice adding labels to the top and adjusting alignment (center left, middle, center right).
Explore how to build a horizontal layout in Vaadin 8 with Maven, arranging components and labels in a single row, and learn about component order, testing, and debugging alignment issues.
Explore the grid layout container, a two-by-two grid of rows and columns, and how components occupy grid cells with coordinates while extending the grid and arranging labels and buttons.
We learn how to create a Bino container for a Vaadin panel, set content, add an image as a form layout component, and style the panel caption with CSS.
Explore data binding with a single binder that links form fields to a bean, validates input, and shows precise error messages as you bind getters and setters.
Use binder to bind name and weight class; number of fights and is active aren't bound. The lecture reveals string-only binding limits and how type changes affect dependencies.
Learn data validation in a Vaadin 8 and Maven setup by comparing binder validation with Java X validation, configuring dependencies, and defining age and name constraints with clear messages.
Navigate a Vaadin app by building a navigator with multiple views, enabling bookmarking and browser history, and wire home, docs, and directory page views with a vertical layout.
Learn how to implement a Vaadin navigator to switch between home, directory, docs, and product page views by wiring panels and buttons.
Explore error handling and warnings in Vaadin 8 apps, including error indicators and their placement, text field validation with a button, regular expressions, and humanised messages.
Explore Vaadin 8 concepts with Maven by building and navigating UI components, including labels, grid and grid selection, panels, images, and data binding with validation and navigation.
Delves into maven essentials: components, profiles, dependencies and transitive dependencies, the maven lifecycle, and archetypes, then demonstrates deploying a web application.
Discover how Maven standardizes Java builds, packaging your project into jars or wars, managing dependencies (including transitive ones) via a central repository, and enabling consistent project management and testing.
Explore the Maven project object model and configure project metadata, dependencies, plugins, and repositories. Understand goals, lifecycles, and how Maven resolves artifacts from local and remote repositories.
Install maven and configure it for the command line and Eclipse, including setting maven home and path, then verify with mvn --version after downloading the binary zip from Apache Maven.
Set up a maven project, create a pom.xml with model version, artifactId, groupId, and version, then implement a main class and run mvn compile to generate target classes.
Explore how to set up Maven project information in the pom.xml, including packaging (jar), name, description, URL, licenses, organization, developers, and dependencies with groupId, artifactId, and version.
Understand Maven directory structure and how to add a custom source directory. Compile with mvn compile to generate class files in target and see how custom and standard directories interact.
Explore Maven inheritance by defining a parent and sharing components with a child, inspect the effective pom, and manage groupId, artifact, version, and packaging to avoid spaghetti code.
Explore maven profiles to manage different properties for production and development systems, create a production profile, and activate it by a file or a JDK version to build environment-specific jars.
Harness Maven archetype generate to scaffold projects from templates, select the version, groupId, artifactId, and packaging, then import the generated project into Eclipse using Maven eclipse:eclipse.
Explore maven dependencies, fetch from central and local repositories, and integrate Apache Commons Lang 3.7 to add prepend-if-missing logic, with Eclipse dependency management and testing.
Learn how Maven handles transitive dependencies—a dependency of a dependency—by automatically pulling in required jars from the central repository through the pom, as versions change and updates propagate.
Explore Maven dependency scopes, including compile as the default, and provided, runtime, system, and test, with archetype Maven templates and how they affect the class parts of our project.
Explore the Maven lifecycles, including default, clean, and site, and learn build phases from validate to deploy, including cleaning target directory and using plugins like Maven compiler plugin and Surefire.
Explore Maven plugins and goals, bind them to build phases, and use the Maven compiler plugin to compile main and test sources, inspect with effective pom and describe commands.
Explore how to build jar files with the maven jar plugin, including configuring archive options, forcing jar creation, and using excludes to tailor the build.
Explore how to use the Maven war plugin to build and package a Vaadin web application, generating a war file from archetype projects and Eclipse workflows.
Explore the maven archetype, a reusable template for quickly generating a spring project, manage dependencies and transitive dependencies, and build and import the project with maven.
Install the Tomcat server, download the binary distribution, configure the port to 81:81, start the server, and deploy web applications using the manager with configured user credentials.
Deploy a web application to Tomcat using Maven and the archetype plugin, configure the server. Test the deployment and redeploy after changes, then verify by refreshing the browser.
Encrypt passwords before deploying web applications to servers to prevent plain text credentials from hackers; the lesson demonstrates generating a Maven master password and updating Tomcat settings.
Explore Maven fundamentals, install it, and leverage custom and standard directories. Learn BOM inheritance, profiles, dependencies and transitive dependencies, plus the Maven lifecycle and templates for faster deployment.
Navigate a Vaadin 8 and Maven GOF section by building an app with a navigator, views, images, a shared forum, OO principles, CSS, debugging, and deployment to Tomcat or local.
Learn to build a Vaadin 8 app with Maven packaging and deploy using Navigator, create a single module project, and implement views with labels in a vertical layout.
Learn to build a Vaadin 8 app with a navigator to switch between house views via buttons, assigning each button a navigation target.
Learn to manage images in a Vaadin 8 and Maven project by creating an image folder, importing images, and linking them to components with reusable image-label pairs.
Learn how to implement and configure text areas in Vaadin 8 with Maven, including creating text areas, binding titles, and populating them with content for multiple house pages.
Create and configure video components for house pages, linking YouTube videos, downloading formats, and storing files in a videos folder to enable playback on each house page.
Build a reusable apply form with first name, last name, and reason fields and an apply button on the house view, using a shared layout and disabling fields after submission.
Learn to apply Vaadin CSS rules to form controls, customize text fields and buttons with size and color, and debug styling with breakpoints and browser refresh.
Add maven properties to the project pom, configure description, licenses, and organization details, then generate a site with mvn site to display project metadata.
Configure and package a war using maven, then deploy it to a local tomcat server, start tomcat, and verify the deployment in the browser.
Attempt free war deployment to the internet using cloud base and alternative platforms. Navigate sign-up and verification, and plan local or cheap hosting when free hosting isn’t available.
Explore the final gof section by building navigators, images for each page, and text areas. Learn object oriented principles and usability, and review Maven properties and debugging tools.
Vaadin Framework is a Java web application development framework that is designed to make creation and maintenance of high quality web-based user interfaces easy. Vaadin supports two different programming models: server-side and client-side. The server-driven programming model is the more powerful one. It lets you forget the web and program user interfaces much like you would program a desktop application with conventional Java toolkits such as AWT or Swing.
Vaadin uses Java for creating web applications. The frameworks works with event-driven programming and widgets, which enables a programming model that is more like a GUI development than normal HTML and JavaScript. Vaadin used Google Web Toolkit for rendering the resulting web page. Vaadin adds server-side data validation to the actions, which means that if the client data is corrupted, the server does not allow it. Vaadin is distributed as a collection of JAR files with Maven or Ivy, which can be included in any kind of Java web project developed with standard Java tools.Also, there is plugin for Eclipse and Netbeans.
Apache Maven is one of the most popular build and project management tools in the java world.In this course you will master all the core concepts of Maven while working hands on creating 16 easy to follow Maven projects. Java is the most popular programming language in use since it’s the only language that works across all computer platforms + android without needing to compile again new changes. Write once, and the JVM does all the work in making sure your programme can run on any platform like Windows, Mac, Linux or Android. This complete Maven course will teach you everything you need to know in order to code awesome, profitable projects, and of course, have fun whilst doing it.
+ Top 12 Maven interview questions with answers!
See what your fellow students have to say:
"Helps you to not just mimic tutorials, but fully understand all the relevant information. Also, introduces you to the Maven. Every question I have had has been answered on the Q and A section within the day. Couldn't be happier with the course. My room mate is now doing it too." Jacob Wiliamson
"Lots of content and really articulate. Instructor absolutely experienced and professional. If I have to find something to improve, I would suggest to show the methods that normally would be used in real world application instead of pointing that in those case we should do differently. I'm happy with the course and looking forward to enroll in others Kiril's courses."Rakesh Petel
"Kiril does a wonderful job of explaining Vaadin and Maven. Kiril is also very responsive to any queries and requests (and also updating the courses with new content periodically)." Sami Yusuf
This course is not for everyone.
This is not a get rich quick course where you copy other people’s code, make low-quality software and hope to have contracts rich clients. This course takes work. There is a lot to learn with Maven, but with the right guidance, information, tutoring and tests, it doesn’t have to be as difficult or time-intensive as doing it by yourself.
You literally can’t lose.
You either end up with advanced Vaadin, Maven & CSS skills, go on to develop great programs and potentially make an awesome career for yourself, or you try the course and simply get all your money back if you don’t like it…
Ready to get started, programmer?
Enroll now using the “Buy Now” button on the right, and get started on your way to Web applications. Or, take this course for a free spin using the preview feature, so you know you are certain this course is for you.
Hurry up, class is waiting!