Comment Re:sysadmin chiming in here (Score 1) 274
Thanks for reply.
- * I have quite long experience with Java. Yes it is resource hungry, but only at the beginning. So simple hello world application will consume much too much memory (RAM). However after this starting point adding more and more business logic does not mean that memory consumption will grow linearly.
- * The framework I mention - GWT is rather a toolbox that you write client and server side code in Java. There are no architectural constrains. However after compilation you get javascript client side and bytecode (java) server side. So there will be a lot of processing in the browser (this is another problem: since state of the browser can not be treated as trusted one, there must be validation of all the data, everything that is received from client, even if it is assumed to be calculated by your code. Then synchronization of states between server and client. Luckily I know this technology well enough that I know how to handle this.) Anyway I will use GWT only to generate client side. I know that probably writing client in pure javascript will produce better results, but I am not master in js and it would take me much longer and produce a lot of bugs. Maybe later while doing optimization some client code will be rewritten.
- * GWT support MVP as well
Yes Java and GWT are my hammers