Book Image

Data-Centric Applications with Vaadin 8

By : Alejandro Duarte
Book Image

Data-Centric Applications with Vaadin 8

By: Alejandro Duarte

Overview of this book

Vaadin is an open-source Java framework used to build modern user interfaces. Vaadin 8 simplifies application development and improves user experience. The book begins with an overview of the architecture of Vaadin applications and the way you can organize your code in modules.Then it moves to the more advanced topics about advanced topics such as internationalization, authentication, authorization, and database connectivity. The book also teaches you how to implement CRUD views, how to generate printable reports, and how to manage data with lazy loading. By the end of this book you will be able to architect, implement, and deploy stunning Vaadin applications, and have the knowledge to master web development with Vaadin.
Table of Contents (11 chapters)

Summary

In this chapter, we learned how to implement lazy loading by enhancing the backend service methods to support it. We learned how to use a lazy-loaded Grid component with filtering and ordering capabilities. We implemented a DataProvider by providing two lambda expressions: one for getting slices of data and one for counting the total number of items. We also discussed UX aspects to take into consideration when dealing with large datasets and learned how to implement infinite lazy loading as an alternative to having a Grid with thousands of rows.

This chapter closes the journey through many interesting topics related to modularization, API design, UI design, and data management in applications developed with Vaadin. There is much more to this subjects that we cannot cover in this book. Hopefully, this book inspired you to find good solutions to some of the challenges you...