Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Has Jquery/MooTools/Prototype eliminated the need for GWT?

I don't hear much about GWT any more.

When it first came out, it seemed to be all the rave in certain RIA circles.

But lately my impression is that GWT has suffered a dip in popularity because solutions like Jquery/MooTools/Prototype offer a much easier way of solving the same problem.

Is this accurate or does GWT solve a different type of problem?

like image 973
Hula Avatar asked Apr 15 '09 17:04

Hula


1 Answers

Well, sort of.

The end-product of GWT ends up being something similar to what the other JS frameworks provide - a JavaScript solution that, for the most part, abstracts-away all the browser and DOM inconsistencies so you can focus on Real Work™.

However, there is a significant difference between GWT and the JS frameworks - programmers who author code with GWT are writing Java, which is then compiled into JavaScript.

So what it really comes down to is this: because great JS frameworks now exist, how many web developers are left that know Java, but don't know JavaScript? Ergo, don't know jQuery or MooTools or whatever?

To me, the answer to that question is: not many.

like image 68
Peter Bailey Avatar answered Sep 23 '22 03:09

Peter Bailey