It rather depends what you want to achieve. For minor additions to the jsp version you could use techniques as used in the one-page-checkout. See gwt references in:
MainLayout.jsp: <meta name='gwt:module' content='com.konakart.Konakart'>
OnePageCheckoutBody.jsp:<script language="javascript" src="gwt.js"></script>
Also look at CheckoutDeliveryAction.java
Also, note the web.xml servlet definition for this:
<!-- Servlet for GWT code -->
<servlet>
<servlet-name>KonakartGWTServlet</servlet-name>
<display-name>KonaKart GWT App</display-name>
<description>KonaKart GWT App</description>
<servlet-class>com.konakart.server.KKGWTServiceImpl</servlet-class>
<load-on-startup>10</load-on-startup>
</servlet>
Also, you could use the documentation at
http://www.konakart.com/javadoc/struts_doc/index.html to help you understand the Struts configuration.
A new Google Group (
http://groups.google.com/group/konakart) has been created that is dedicated to creating open source store fronts using different technologies. It may well use GWT as the client technology but this is not yet decided.