Mark Estrada
Mark Estrada

Reputation: 43

Add Ajax Support to Spring MVC

I would like to add ajax to an existing spring mvc 2.5 webapps. But i dont know where to start.

I think spring does not support ajax integration.

Does someone know how can I accomplish this? I was thinking that my ajaxrequest should be catch by the controller interface but I dont know where to start. I dont want to use any ajax library at this point but just plain old ajax approach

Kindly send me links or tutorials if what I am thinking is possible please

Upvotes: 1

Views: 1789

Answers (1)

Nirmal
Nirmal

Reputation: 4829

Spring MVC does not provide out of the box Ajax support. However it provides suitable extension points through its template based design to enable Ajax support very easily. Still you can implement it using jquery library.

Upvotes: 2

Related Questions