Vaadin is a free and open source web application framework for Rich Internet Applications (RIA).
In contrast to Javascript libraries and browser-plugin based solutions it features a server-side architecture, which means that the majority of the logic runs on the servers.
AJAX technology is used on the browser side to ensure a rich and interactive user experience. Vaadin is a big collection of UI components. There are server-side components like Button, Table, and Tree that you use to compose the application user interface.
The components use events, listeners, and data binding to communicate with each other and the business logic.
Vaadin is a robust architecture for rapid application development. The component-based architecture together with the data binding features help you to build applications that are easily modularized and refactored as needed.
What's New in This Release: [ read full changelog ]
Security fixes:
· #7669 CSRF/XSS vulnerability through separator injection
· #7670 Directory traversal vulnerability
· #7671 Contributory XSS: Possibility to inject HTML/JavaScript in system error messages
· #7672 Contributory XSS: possibility for injection in certain components
Enhancements:
· SQLContainer: SQLContainer connects your application to an SQL database using JDBC. SQLContainer allows you to easily bind data stored in a SQL database to Table and Select components, as well as edit the data using Forms. Compared to many object-relational tools this provides you with fast, low-level database access. SQLContainer was previously distributed as an add-on and has now been integrated into the framework.
· TreeTable: TreeTable is an extended Table component that can show hierarchical structures in its first column. Users can show or hide children from a small icon before the actual column value in the first column. TreeTable is, similarly to Table, designed to scale well with large number of...