1.

Explain Bootstrap Procedure For Gwt Application?

Answer»

Following are the STEPS of bootstrap proceure for GWT application when a browser LOADS the GWT application −

  • Browser loads the host html PAGE and .nocache.js file.
  • Browser executes the .nocache.js file's javascript code.
  • .nocache.js code resolves deferred binding configuarations (for example, browser detection) and use lookup table generated by GWT COMPILER to locate one of the .cache.html.
  • .nocache.js code then creates a html hidden iframe, inserts that iframe into the host page's DOM, and loads the .cache.html file into the same iframe.
  • .cache.html contains the actual program of a GWT application and once loaded in iframe shows the GWT application in the browser.

Following are the steps of bootstrap proceure for GWT application when a browser loads the GWT application −



Discussion

No Comment Found