Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just tried to play with Vaadin Framework and it seems to me very easy to use. Plus what I like about his framework is that it is built on top of GWT. What do you think, should I continue using this framework or it's better to stick with GWT.

share|improve this question

17 Answers

up vote 76 down vote accepted

Hey. As a disclaimer, I work for the company developing Vaadin.

Vaadin uses GWT in a way that it has a set of components precompiled in GWT. You can, of course, additionally make your own components if you so want to. However, the set of components is quite complete, and can often be customized for your own need. This means that you don't have to recompile your code from Java to JavaScript every time you change your application. You just combine the already available components together.

The framework is server driven, so all logic is handled on the server side. The components has two parts, client and server file. The client side is just a dummy "view" for the component. Once you interact with it, it sends a message to the server that this or that was pressed/written/etc. The server then decides what should be done. This is for increased security, because you can't "hack" the logic as only a small API meant for sending requests is available in the javascript. This may be in some cases a little trade-off with speed of the application, but I don't think it is a so bad. Worst speed bumps are usually db query round-trips and such, which doesn't have anything to do with the choice of the UI framework. Sluggishness of the demos as suggested can be because you're far from the server or there is a high user hit at the moment. Try it in an own environment, close the the final application of your application, to see how well it performs. There are some ready application that you can just deploy to test it out.

I guess the choice boils down to what you are trying to do. Vaadin is good for web applications, as you can build a normal Java application and do the dynamic web UI for it easily. If your doing something more of a traditional web site, where users only views the page - more than actively interacts with it, then Vaadin is not the best way to go. Go with some other free frameworks like rails or a php framework etc. I think that you're more doing an application as you're suggesting that you are using GWT now, so Vaadin should be good.

Ask more questions, here, on the Vaadin forums or at the irc channel #vaadin @freenode and maybe someone can give you more reason to why or why not use Vaadin.

share|improve this answer
Hi Jens, I was beginner to vaadin and we are planning integrate with our app with vaadin. we planned to control all UI and components based on the xml configuration. Can you suggest better way to implement vaadin flexibly.Your answer would help me a lot.Thanks in advance – Kalyan Jan 20 '11 at 13:21
12  
I don't work for Vaadin and will concur. Vaadin is beautiful. By far the best framework I've used in the last few years. I am infinitely more productive. Please tell your coworkers that they have produced an awe inspiring product and I am highly appreciative. – Richard Clayton Feb 8 '11 at 3:22

Well, I'd like to comment something.

After almost 1.5 year developing a not so huge GWT application, using all the best-practices I learned from the last Google I/O like MVP, EventBus, CommandPattern, etc. I say this from the bottom of my heart: after spending days trying to get things work out the way my team and client wanted both technically and visually, even after the release of UiBinder, Vaadin came to me like a light in the end of the tunnel.

After writing almost a thousand boilerplate actions for command pattern, another thousand presenters and views and another thousand event handlers, etc.. Not having to deal with almost 75% of these classes and still maintaining a good pattern approach (appfoundation add-on), a little network overhead is acceptable. With Vaadin, out-of-the-box, you get good widgets, paging, data binding, flawless layouting. All of this for what? Some more memory consumption in the server-side.

I think I can say this is acceptable because I'm not building the next Facebook or something. I still can handle thousands of simultaneous users per medium server and yet maintaining low-latency round-trips.

With Vaadin, I can build a nice app with almost a half of lines of code and still the application seems more complete. :-)

!! UPDATE February 23, 2011: I can't stress out how one should be aware of each framework's limitations. Vaadin is no different. One should be aware that Vaadin abstracts away any form of html or javascript. Also, the resulting HTML is veeeery heavy and you should take care of history state changes yourself. So, be aware of those overheads when you build your project.

Marcos Alcantara

share|improve this answer
5  
do you work for vaadin too ? – NimChimpsky Jul 22 '10 at 7:56
22  
I can answer that for you, since I work for Vaadin Ltd: no he doesn't. – Jonas Granvik Oct 7 '10 at 19:01
2  
Good point about Framework limitations! Very similar to GWT if you buy-in then you lose a control of HTML. Sometimes I think it's simpler to learn JavaScript and Ember.js than Vaadin/GWT. – Renat Apr 25 '12 at 18:27

The usual talk about Vaadin concerns the widget set and worries about round trip communication between client and server.

But in my opinion this overlooks the most significant (perhaps revolutionary) aspect of Vaadin: it completely eliminates the task of designing and implementing the client-server communication that is usually required for AJAX applications (the "A" and "X" in AJAX).

With Vaadin, you can completely forget DTO's (data transfer objects), protocol-based security problems, Hibernate lazy loading exceptions, etc.

You are in some sense just writing a regular old Java Swing desktop application, only you are using a different UI toolkit from Swing.

share|improve this answer
8  
Hibernate lazy loading exceptions are common with Vaadin if you don't handle them correctly. Usually, you will use a session-per-request pattern, which means that your entities will be deattached from the hbn session at the end of the http request. If you try to lazy load anything outside the same http request, a lazy loading exception will be thrown - unless you re-attach the entity to the active session. – Kim L Dec 1 '10 at 10:37
1  
You're right about that, i.e., the case of lazy-loading problems when an object is used across multiple requests. With Vaadin you do need to understand where your objects are going to go between requests (including the possibility of serialization). – Archie Dec 3 '10 at 3:44

From my experience GWT requires to much boilerplate code and slow when building complecated and rich UI. Usually we deal with quite complex application models that holds many persistable domain objects. To bring all this data to client you'll need to introduce separate client model and provide data conversion mechanism. We've used Dozer for this purpose and it takes much time to map each filed, create custom converters and test all this stuff.

On the other hand if don't fall into overengineering and if application is not very complicated you may take a benefit of utilizing client resources and have less load on server. In this way you may dramatically minimize communication with the server and get much more responsive software.

Vadin looks very developer frinedly :) But I a little bit afraid of "massive AJAX attack" to the server. I have experience in ZK and to often we faced the performance problems when a trivial operation on UI works slow because it requires communication with server.

Wicket is another good framework but it is more suitable for websites. It can work with and without AJAX, can be indexed by search engines. And the most attractive thing it deals with clean HTML code - no custom tags, no control structures, strict separation of concerns and only specific wicketid namigs for components.

It mostly depends on your needs:

  1. If you need super fast and simple application - use GWT and utilize client resources
  2. If your application is quite complex than Vaadin looks to be the better option
  3. If your application is public and you need an ability to index it for SEO than chose Wicket.
share|improve this answer

There were "concerns" about Wicket using sessions to manage component states and scalability similar to the arguments about Vaadin and server side processing. I have learned over the last 10 years that the Java community is usually wrong about how to measure a web framework's potential (among other things). From JSF to Grails, it usually takes a couple hundred GB of memory and at least a dozen open source jar files with overlapping and inefficient functionality to get a production application running. Look around and you will see most web hosting companies don't offer a practical java option because of the erratic path java technologies have taken for web frameworks. GWT 2.1 is still a pain to use because of compilation speed and it is just getting serious with MVP and data tables which should have been there from the start. I like Wicket but Vaadin looks promising... but knowing how Java frameworks go, I'm sure they will shoot themselves in the foot at some point but I doubt it will be because of heavy server side processing.

share|improve this answer

The thing is, for serious development, you can't forget about anything, let alone dtos.. i am ditching seam, and server side ui concept just because i wish finer control over what is going on the wire.. vaadin's problem to me is precisely that, having state on the server side..

share|improve this answer

I've been using it for a couple of weeks and I really like it so far. Code is solid, docs a re good, very logical construction, end results are excellent.

I'm loving it in combination with Hibernate to sort out all the database tedium.

Plus - easy to deploy (with Tomcat you can just upload a single .WAR file via the web interface, couldn't be easier)

share|improve this answer
7  
"upload a single .WAR file". I think every Java Web Application can be like that.. – Wahyu Fahmy Mar 21 '12 at 6:42

It's also worth considering Apache Wicket as strong alternative for Component-oriented Java Web UI frameworks. Vaadin sounds great and I don't want to detract from this discussion, but choice is a good thing. There's a few examples with source linked off the home page, and even more at the WicketStuff site, and the excellent book from Manning forms great third-party documentation.

share|improve this answer

For building good looking UI's, I would say this would be the way to go. Plus it's very well documented.

share|improve this answer
7  
My experience is that good looking UIs depend more on team's talent than the UI framework in use, but Vaadin surely has quite nice default themes. In a commercial setting, you'd probably use your own theme, but then we're again back at team's talent :) – Kaitsu Aug 10 '09 at 17:16

take a look at the Vaadin demo build with Maven: http://asolntsev.blogspot.com/2009/11/vaadin-demo.html

share|improve this answer

I thought Wicket was the way forward, until I tried to make it work efficiently and started a depression (joke). Then, I switched to GWT, which looked great, but there is soooo much boiler plate code to write and the documentation is not that great... -> The light came from Vaadin: simple, operational, no bugs so far... !!!

share|improve this answer
What exactly was wrong with Wicket? Problems with the core or components? – dma_k Jan 4 '12 at 19:20
I think when you are complaining about something you should tell the reasons and not just complain – Danilo Jul 31 '12 at 14:17

We have looked at Wicket where I work but we found instead of 9,000 files, we could have over 30,000. We have nearly 1,000 screens with our core financial services application and although Wicket looks great it is extremely difficult to convert our Struts 1.3 code to Wicket. Our architect did a POC project and just 3 screens added several hundred classes (many are for re-use). It's also difficult to protoype a screen with Wicket since your html must match the Java code and vice-versa.

Vaadin looks promising but it will be a hard sell to the team.

P.S. No matter how great a framework is, no one will learn it if it isn't used in the industry. Wicket has been around for awhile yet very few companies use it. Most developers I talk with are concerned with learning a new framework that is useless on a resume.

The key thing is Vaadin uses Swing-like design and it helps that I started in Java using Swing.

share|improve this answer

I'm using Vaadin as well. Although the application is not large, what I really liked about the experience was that the API was consistent, generally well documented and given I was developing with a new tool, I was able to crank out stuff for a very demanding client in the same, or in some cases, better timeframes than the tools I used before.

Very few issues. The only one right now is the client insists on using IE 7 (don't ask) and some of the fancier eye candy doesn't work totally 100% in an addon component (charting).

BTW I don't work for Vaadin either :-)

share|improve this answer

I have tried Wicket and Vaadin both and if you really try both for some time, with in a month you will know that Vaadin is the way to go and not Wicket, period. - Dheeraj G

share|improve this answer
1  
What went wrong for you with Wicket? Too much HTML coding? – dma_k Jan 4 '12 at 19:21

I have used Vaadin to develop a giftadvisor at the company I work for(not Vaadin ;).

Vaadin allows you to build real componentized Swinglike web applications.

If you are concerned about client-server roundtrip for every click I have this to say: I created a mouseover button which changes the look of the button on yes, mouseover. For this the framework has to go to the server and back. And it works fast enough imo. See http://www.cadeau.nl/sophie to check out what I mean.

I like Vaadin, it suites my needs and makes webdevelopment a breeze.

Regards, Rob.

share|improve this answer

I dont mind using states on the server side. It serve its purpose. With Cloud computing now-a-days storage and bandwidth are becoming cheap. But yeah I can see your point from a good design perspective especially if you want to RESTify your application. But I believe that there are more pros than cons regarding Vaadin and the like. One major thing, you dont have to tweak a great deal about your web-apps for a specific browser lets call it IE, for Javascript/CSS intricacies - especially if you are oriented towards the back-end like me. All your webapps becomes compatible across browser without having to worry anything. Remember developer time is pricier than that of storage and bandwidth. Thats my opinion. =)

share|improve this answer
It'd be better to back up your answer with some sources. – JSuar Dec 18 '12 at 1:00

I started with Vaadin only two days ago and was able to build a small CRUD application on OSGi complete with modularity, data binding, OSGi services for persistence. One really nice thing is that my complete UI is only 118 lines of code and supports complete CRUD operations for a simple java bean structure.

It is also nice that Vaadin works perfectly in OSGi. It is already a bundle and I found a little bridge from Neil Bartlet that makes vaadin extremely easy to use in OSGi.

See Tasklist Vaadin Example

share|improve this answer

protected by Community Jun 26 '12 at 2:24

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.