- 
        1. Re: I can`t use ${} in a jsp with spring-mvckelbed Jun 30, 2006 9:48 AM (in response to khan76)Also your page should work, you might need to change your core taglib definition to (and see what happens): 
 <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>
 Make also sure that standard.jar and jstl.jar are in your classpath. :)
 If that still doesnt work, you ll have to check your web.xml and see if you are using a web.xml version at least equals to 2.2 .
- 
        2. Re: I can`t use ${} in a jsp with spring-mvcleozhang99 Sep 20, 2006 9:32 PM (in response to khan76)I have a similar problem. It was ok when it was deployed to Sun Application Server. It only happen when I deploy it to JBoss. 
 Any help will be very appreciated.
- 
        3. Re: I can`t use ${} in a jsp with spring-mvcleozhang99 Sep 21, 2006 7:24 PM (in response to khan76)It works fine after I changed <web-app version="2.5" to <web-app version="2.4" in web.xml file. You have to change its parameters also as: 
 <web-app version="2.4"
 xmlns="http://java.sun.com/xml/ns/j2ee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
 
     
    