Vikas, It seems you first needs the basic understanding of GWT and its uses Here is the procedure to create GWT app in eclipse IDE 1. Install GWT from eclipse https://developers.google.com/eclipse/docs/getting_started 2. Create gwt application. Follow the tutorials. https://developers.google.com/eclipse/docs/getting_started#creating 3. Use RPC to connect to DB. Write your db connection and data manipulation in server side in InterfaceImpl class of the rpc. https://developers.google.com/web-toolkit/doc/latest/tutorial/RPC 4. Never write the business logic and core work on the GUI side. In fact you will not be able to do so because GWT packages will not support. use GWT only for data presentation. 5. GWT has a control called FormPanel. use this widget control to layout your form and call the desired servelet on the submit of the form panel.
Regards, Javed On Jul 6, 1:26 pm, Amit Sharma <[email protected]> wrote: > hi Vikas.... > I think you are using servlet with GWT in the form of its > Service implementation class ...here you are using gwt-servlet.jar > file.....also in case you want pure servlet to implement with GWT please go > through this url > :http://zawoad.blogspot.in/2010/04/how-to-call-servlet-in-gwt.html.... > > Amit > > > > > > > > On Friday, 6 July 2012 11:44:43 UTC+5:30, vikash@Atos wrote: > > > Hi, > > > Is there any way, we can develope and run a J2EE App in GWT environment? > > > Can we mix J2EE components, like servlets and jsps in GWT app? > > > Facing issue while designing UI with GWT. > > > Any help guide would be helpful. > > > Thanks in advance. > > > Regards, > > Vikash -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
