1. Spring MVC and JSP - can not pass data from controller to jsp stackoverflow.comI have a GWT Application with Spring MVC support. I've defined a spring controller: import javax.servlet.http.HttpServletRequest;
|
2. Digest authentication for REST controllers with a GWT client. forum.springsource.orgFeb 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.orgimport 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.orgimport 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.org1. 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 ... |