JSP 没有正确打印对象

JSP not printing the object correctly

我开始学习 Spring MVC 并创建了一个控制器,在 ModelAndView 中添加了一个虚拟对象:

 modelAndView.addObject("pageContext", pageContext);

试图在 JSP 中像这样访问它:

<div>${pageContext}</div>

但是,它打印的输出如下:

org.apache.jasper.runtime.PageContextImpl@3085ff7b

它不应该打印准确的对象输出吗?使用 tomcat 9 和 jdk8.

谁能指出可能遗漏了什么?

pageContext 是隐式 JSP 对象的名称。尝试将插入到模型中的对象命名为其他名称。

modelAndView.addObject("someObject", theObject );