Re: integrate GWT gui with spring framework

2009-06-22 Thread bhumij
you have clear some issues.however still i have some questions. for view i have used web macros. now i am not getting how to use JSON. i have used json and xml before. but i am not getting where you are trying to place in existing framework. My biggest concern is that i dont wanna change the

Re: integrate GWT gui with spring framework

2009-06-21 Thread Sledged
I recently dealt with a similar issue. In my case I wanted to create a js gui while still being able to support scriptless browsers. (Additionally, I wanted to make the application accessible via SOAP.) Since you already have a spring controller, the most readily available option of which I can

Re: integrate GWT gui with spring framework

2009-06-18 Thread bhumij
your reply really makes sense. since I want to change entire gui to GWT, there is no need to use VIEW aspects. However, How can I access the classes or objects added in controller class. I have ready made spring mvc application. Is it possible to simply modify the existing controller to

Re: integrate GWT gui with spring framework

2009-06-17 Thread Arthur Kalmenson
You can still use Spring MVC with GWT, but if your entire UI is going to be written in GWT you won't be using the View and Model aspect of Spring MVC. I just use it for the servlet dispatcher to direct requests to the appropriate controller which implements the GWT RemoteService. If you search

integrate GWT gui with spring framework

2009-06-16 Thread bhumij
I have developed java-spring application. its gui is developed using javascript and 3rd party lib like YUI. Now I need to use GWT for GUI. I want to use GWT for only GUI developing purpose. I have no idea how i can integrate it into existing spring framework. View classes of spring frame works