1) you have to mask *index*jsp. Else the shell will resolve it, and if you happen to have a file a-index-0.jsp, find will be confronted with that substitution.
find . -type f -iname "*index*jsp" -print | xargs ls -t | xargs grep body
2) print is, what find does by default.
find . -type f -iname "*index*jsp" | xargs ls -t | xargs grep body
3) find has the possibility to call external programs with -exec; no need to call xargs by pipe.
find . -type f -iname "*index*jsp" -exec ls -t {} ";" -exec grep -n body {} ";"
4) Formatting the output of find can be done by find itself - cTime, mTime and breakfeasttime. ;) See yourself (man find) for the gazillion of options for -printf, especially for times.
find tmp -type f -iname "*index*jsp" -printf "%H/%f\t %CD\t" -exec grep -n body {} ";"
5) Why?
If your find, like GNU-find, has these options, you don't have to sanitize against blanks in filenames. Blanks in filenames are hard to handle - find -print0 | xargs ... can do it, but you don't have to do it, if you stay in find. But if you call "ls", you're lost.
Maybe your current command yields no file with blanks/newlines/tabs in the name. Fine. But learning the better way, and communicating it constantly prevents errors later and for others.