What is the difference between hosted mode and development mode in GWT?
Share
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.
Hosted mode is the old name for development mode, they’re the same.
There are two modes, and they’re currently named development mode and
production mode
Development mode runs Java whereas production mode compiles to JavaScript.
This means that in Development mode you’re using the true java.lang.String or
java.util.ArrayList for instance, whereas in production mode it’s the
emulated version that’s being used.
It sometimes lead to different results (Java’s Date is quite not the same as JavaScript’s one)