Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Groovy and GWT: Combining both paradigms

Tags:

groovy

gwt

Is it possible to develop an application in groovy using GWT components?

Luis

like image 974
Luixv Avatar asked Apr 20 '10 12:04

Luixv


2 Answers

If you want to use Groovy on the server-side and GWT for the UI, that is certainly possible. You can use Grails (a Groovy web framework on the server), and the Grails GWT plugin to help you integrate GWT with this framework.

like image 186
Dónal Avatar answered Sep 21 '22 19:09

Dónal


I don't think so, because the GWT compiler is basically a Java to JavaScript source compiler (it would be possible if the GWT compiler needed Java bytecode). You can use Groovy on the server side though.

like image 33
Daff Avatar answered Sep 24 '22 19:09

Daff