I am developing my application using spring-web-mvc...
Now at my Controller it returns like this :
public class InterfacesManageController implements Controller {
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
Map<String, Object> myModel = new HashMap<String, Object>();
myModel.put("interfacesList", this.interfacesSecurityProcessor.findByAll(0, null, null, null));
return new ModelAndView("common", "model", myModel);
}
Now, my JSP contains following code :
<c:forEach items="${model.interfacesList}" var="prod">
<c:out value="${prod.id}"/> <c:out value="${prod.name}"/><br><br>
</c:forEach>
Now when i am executing this to Windows platform where i have tomcat 6.0.20, ognl 2.6.11 it s giving me exact output which i want like :
117 eth1
118 eth1
119 eth0
But, when i am deploying war file in unix (cent os) platform, where i have tomcat 5.5, the ognl expression doesn t get executed and giving me output like :
${prod.id} ${prod.name}
Can anybody have solution, what should be the problem with ognl expression version and tomcat version ?
Thanks in advance...