You are on page 1of 1

Embedding and Integrating GWT in Web Application Hi, From tutorials I understand that I can "embed" GWT in Servlet

based applications by placing the compiled client-side code at the root of the web application, by the WEB-INF directory. However, by doing so the GWT application would be freely accessible. Is there a common/best practice that allows access to the GWT applications through the containing Servlet based application? Furthermore, is it possible to re-construct HTML constructs within GWT? Specifically, can I dynamically create and populate the following definition lists in GWT? <dl> <dt>one</dt> <dd>...</dd> </dl> <dl> <dt>two</dt> <dd>...</dd> </dl>

You might also like