Java – jsp:param with Java class
I have a JSP file that includes another JSP file. The first JSP should pass an instance of a Java class (widget) to the second JSP file. This is what I have: The first JSP: <jsp:include page=”/container/SpecialWidget.jsp”> <jsp:param name=”widget” value=”${widget}”/> // widget is a .Java POJO </jsp:include> The second JSP: ${param.widget.id} The problem is that… Read More »