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)

Using internationalization for Multiple Language Support

Internationalization is the process of making an application ready to support several languages and data formats. An internationalized application can be adapted for a particular language and region, a process known as localization, which consists of adding a specific set of resources (usually text, images, and data formats) to an internationalized application. Ideally, localization should not require rebuilding the application, but only adding the localized resources and, at most, restarting the web container.

Addressing internationalization early in a software development project and knowing the audience makes the process much easier. Internationalization is orthogonal to all the application layers, and the process of localizing can involve translating and defining several resources such as texts, images, videos, audio...