Say I have something like the following in a servlet:
POJO mo = new POJO();
mo.name = "Dude";
mo.age = 40;
request.setAttribute("mo", mo);
request.getRequestDispatcher("/WEB-INF/test.jsp").forward(request, response);
Now in the JSP file, I can use
...
<body>
Hello ${mo.name} you are ${mo.age}
</body>
Is there a way to get the editor to know that mo is of class POJO so I can get a list of properties? Some way to declare that the JSP expects an instance of POJO named mo ?