Server side of the GWT application

Is it possible to write the server side of the GWT application in other languages, then Java, if so, how to use the GWT-RPC mechanism, sample code

thank

+3
source share
3 answers

Please read the GWT Server Communication documentation :

If you can run Java on the backend and create an interface for business logic on the application side, GWT RPC is probably your best bet. [...]

If your application accesses a server that cannot host Java servlets, or one that already uses a different data format, such as JSON or XML, you can make HTTP requests to retrieve the data.

+4
source

, GWT - JavaScript .

, RequestFactory GWT-RPC, Java. RequestFactory JSON, /.

+4

Do not waste your time with the GWT-RPC. This is bad. Use RequestFactory. I am surprised that people are promoting the GWT-RPC. This is a broken toy.

+1
source

All Articles