DWR « Web Service « Spring Q&A





1. I have a question about DWR and Service    forum.springsource.org

I am looking some Spring MVC + DWR examples. I see that several examples use to call services from jsp page. Is it correct ? I doubt that this is the ...

2. AJAX - DWR should work with directly with a bean service or a controller???    forum.springsource.org

Hello guys (sorry for my grammar) i am in a huge doubt about this DWR should work with directly with a bean service or a controller??? i read a book by ...

3. calling spring cached service method not work with DWR    forum.springsource.org

Hi, I try to call a method in a spring service with DWR(http://directwebremoting.org) . I implement a method inteceptor for caching the result of this method with ehcache. The unittest works ...

4. Spring 3 MVC RESTful "/{xxxx}" clashing with DWR "/engine.js"    forum.springsource.org

Spring 3 MVC RESTful "/{xxxx}" clashing with DWR "/engine.js" I have an Annotated controller mapped like Code: @Controller public class UsernameController { @Autowired private UsernameService usernameService; @RequestMapping(value = "/{username}",method = RequestMethod.GET) ...