Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run a GWT page without backing server?

As GWT translates java-code to JavaScript: is it afterwards possible to run a page without a backingserver? Like just production the html,css,js folder and just running it in a browser without a server?

Especially when using GWT with Canvas?

like image 949
membersound Avatar asked Feb 19 '23 07:02

membersound


1 Answers

Absolutely, yes. If you don't have a need for a server then, well, you don't need a server.

Note: you'll have to use the xsiframe linker if you intend to serve the files from disk rather than HTTP. In most browsers the std linker (the default linker) won't work with file:// URLs.

like image 136
Thomas Broyer Avatar answered Feb 21 '23 01:02

Thomas Broyer