Controller « GWT « Spring Q&A





1. Spring MVC and JSP - can not pass data from controller to jsp    stackoverflow.com

I have a GWT Application with Spring MVC support. I've defined a spring controller: import javax.servlet.http.HttpServletRequest;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class IndexController {

    @RequestMapping("/")
   ...

2. Digest authentication for REST controllers with a GWT client.    forum.springsource.org

Feb 3rd, 2011, 06:23 PM #1 tencotego View Profile View Forum Posts Private Message Junior Member Join Date Jun 2010 Posts 9 Digest authentication for REST controllers with a GWT client. ...

3. [Contribution]Easy to Use Spring GWT Controller    forum.springsource.org

import org.springframework.stereotype.Service; import br.mikhas.athome.view.client.TestService; import br.mikhas.gwt.spring.GwtRemoteService; @Service @GwtRemoteService("test.rpc") public class TestServiceImpl implements TestService { public String[] testMethod(String text) { String[] result = { "this is", "a test" }; return result; } ...

4. [Contribution]Easy to Use Spring GWT Controller    forum.springsource.org

import org.springframework.stereotype.Service; import br.mikhas.athome.view.client.TestService; import br.mikhas.gwt.spring.GwtRemoteService; @Service @GwtRemoteService("test.rpc") public class TestServiceImpl implements TestService { public String[] testMethod(String text) { String[] result = { "this is", "a test" }; return result; } ...

5. controller for gwt?    forum.springsource.org

1. in this tutorial http://www.springsource.org/roo/start, there was mentioned to create "controller" 2. but in tutorial http://www.springsource.com/download...oad?sid=544384 , there is no required to create 'controller' for gwt, since we are not using ...