Search code examples
javajqueryajaxjavascriptdwr

Replacement for DWR


DWR is mainly used for handling AJAX responses from server..

So i wanted to know other similar technologies, which would make AJAX handling easy like calling a Java method from within Javascript and pasting the response in html code.

I know jQuery has AJAX methods, but so not think it can call and handle specific Java methods.


Solution

  • I know jQuery has AJAX methods, but so not think it can call and handle specific Java methods

    I use spring with jquery, each request can be mapped to a specific method. I prefer it over dwr.

    Ajax and Spring.