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)

Introduction to JDBC

If you have developed business applications with Java, you have most likely used JDBC directly or indirectly(through an object-relational mapping framework) to connect and use relational databases. A relational database is a system for storing information in a tabular form; that is, in tables. There are many vendors offering free and commercial relational database management systems (RDBMS). Two of the most popular open source RDBMS are PostgreSQL and MySQL, while Oracle Database and Microsoft SQL Server are well-known options among the commercial ones. These systems understand the Structured Query Language (SQL), a declarative language used to perform tasks such as adding or deleting rows in a table.

When using a declarative language, you specify what you want the program to do. In contrast, when using an imperative language, such as the Java programming...