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)

Implementing Server-Side Components with Internationalization

Having a login form is arguably one of the most common requirements in web applications. In this chapter, you will learn how to implement a reusable and extensible login form that supports multiple languages, and see the advantages of favoring composition over extension when implementing UI components. Through examples, we'll discuss why extension is not always the best approach, and we'll explore several alternatives for implementing custom server-side UI components with Vaadin.

This chapter covers the following topics:

  • Extending layout components
  • Using the Composite class
  • Externalization of Java Strings