java - GWT finished Projct, how to bind it into Website -


So I have terminated my GWT web project, but how can I bind it to my website at funpic.de? I saved but did not get it right. Any good tutorial

If you want to give your page some area on your page, then you have There are two opportunities:

You can use an iframe in your favor and load your GWT app with src-attribute.

  & lt; Iframe src = "TheGwtHTMLPage.html" width = "90%" height = "400px" />   

Or you can use a div tag with the id.

  & lt; Div id = "yourDivId" & gt; & Lt; / Div & gt;   

In this case, you must load your * .nocache.js (always with the script-tag) and

  RootLayoutPanel.get ("yourDivId" ) Add (...).   

is different between the two, if you use an iframe, your GWT app can not get any information from your HTML page.

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -