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

This chapter served as the fundamentals of database connectivity with Java. We learned concepts such as JDBC drivers (that allow applications to connect to specific relational database engines) and connection pools (to better use connection resources). We learned how to use a ContextServletListener to initialize connection pools or database-related services. We saw an example of a simple domain model, and how repository classes allow us to encapsulate access to data represented in this model.

In the next chapter, we are going to learn about several persistence technologies, and how to integrate them with the Vaadin Framework.