It depends. What kind of application do you have now? Does it have a desktop GUI?
Generally speaking you cannot simply use GWT to convert an existing project as-is into a web application. You'll need to use GWT to write a new user interface layer and determine what code should run on the browser and what should run on the server. Plus, since GWT provides a subset of all the classes provided in the Java standard libraries, and doesn't support reflection, some Java code and libraries won't work in GWT (such as Apache Commons BeanUtils, which uses reflection). The best way to answer your question might be to walk through the "Getting Started" Tutorial on the GWT page; it's well-written and will take you through all the basic steps of building a GWT web application. It will show you what GWT code looks like and how the user interface works with the server-side code. Once you've followed that tutorial, you should have a better idea of it it will work for your application. Cheers, Dan On Jul 16, 3:43 am, Jordi <[email protected]> wrote: > I have a java project and I want to convert it into a web project. Can > I use GWT to do that? If I can could you tell me how? > Thanks for your attention --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
