Right, I'll try explain this properly... I got a JSP page on the front end, have it sorting all my sessions and stuff like that. Working fine. I have a servlet which creates objects - i want to display these items on the jsp (simplifying it), but I dont want to pass the values over the session variables and creating scriptlets would be a big no no. If I do send the variables over the session or the request, the objects can become exponetially large... Which would probably kill my server

Can anybody help me with this? I dont really want to use the servlet to display the page... but if i have to I guess I will.
However, is there a way maybe I could use ajax or something to call the methods or actions of the servlet and display it on the client side? kinda in the same way jsp include or something along those lines?