0

I am creating a java application where I am using spring MVC and hibernate.

Add for Header, Footer and Menu I am using tiles because these are same for all pages.

Now my question is on each link click whole page is loading instead I want to load only body part.(Means I want to stop loading Header, Footer and Menu each time).

How its possible??

Thanks in adv.

Mickey Patel
  • 231
  • 1
  • 3
  • 11

1 Answers1

0

This can be done by making AJAX calls from your JSPs to Spring controller. Detailed explanation is here

Vel
  • 767
  • 5
  • 10
  • 24