Quantcast
Channel: UI
Viewing all articles
Browse latest Browse all 1007

Vaadin Plugin for Eclipse

$
0
0
Date Created: 
Fri, 2009-10-09 09:49
Date Updated: 
Thu, 2017-03-02 12:58
Vaadin Ltd

Vaadin Framework is an open source Java UI library for creating rich web user interfaces. Using its component based API developers can create stunning web applications in plain Java - without thinking about client-server communication (XHR, WebSockets) or writing JavaScript, CSS or markup languages.

List<Person> personList = backendService.getAllPersons();
Grid<Person> grid = new Grid<>(Person.class);
grid.setItems(personList));
grid.setColumns("firstName", "lastName", "email");

Vaadin only requires a servlet container, and there are integration libraries for Spring and Java EE (CDI). In addition to dozens of built-in components the Vaadin Directory provides over 500 community made widgets and components for building your application.

The Vaadin Plugin for Eclipse comes with project templates and samples and a WYSIWYG visual designer to speed up your development.

Vaadin is Open source (Apache 2.0) but Vaadin Ltd offers professional tools and services for the framework.


Viewing all articles
Browse latest Browse all 1007

Trending Articles