Hi i am using GWT after i came to know that GWT will convert in to javascript .
Then what about the performance issue ?? is it slower than a pure javascript application ??
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The code written in Java is converted by GWT compiler into javascript before you deploy your application. The compilation does not happen at run time.
GWT does optimization for the compiled javascript. It actually generates different versions for different browser and language combinations. It retrieves the appropriate javascript file for a browser using deferred binding. Also, it does obfuscation so that the compiled javascript size will be small. So the your javascript application will be relatively faster.