gwt - Diffirence between hosted mode and development mode -
what diffirence between hosted mode , development mode in gwt?
hosted mode old name development mode, they're same.
there 2 modes, , they're named development mode , production mode
development mode runs java whereas production mode compiles javascript.
this means in development mode you're using true java.lang.string or java.util.arraylist instance, whereas in production mode it's emulated version that's being used.
it lead different results (java's date quite not same javascript's one)
Comments
Post a Comment