Spring 2.0.x, JDK6
I have a JstlView served up by a Spring command controller.
The JSP is rendered with the ${} tags unevaluated as follows:
Count = ${count}
The JSP src is as follows:
I am not sure how to debug this - is there a way to trace theCode:<?xml version="1.0" encoding="ISO-8859-1" ?> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ page contentType="text/html; charset=iso-8859-1" language="java" errorPage="" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head></head> <body> Count = ${count} </body> </html>
macro replacemenets in a JSP after the controller completes
makeModelAndView()?
Tx,
/U


Reply With Quote