- 
        1. Re: JSTL fmt tag fails in JBoss EAP 6.2antoine.rey Mar 6, 2017 9:09 AM (in response to amarnath_rc)I've got the same issue with JBoss 6.4 EAP. Did you find any solution? 
- 
        2. Re: JSTL fmt tag fails in JBoss EAP 6.2andey Mar 10, 2017 8:05 AM (in response to amarnath_rc)Hi, It's trying to cast a org/springframework/web/servlet/support/JstlUtils$SpringLocalizationContext into a java/lang/String . This is due to that the JSTL implementation doesn't recognize SpringLocalizationContext as a LocalizationContext instance though SpringLocalizationContext surely implements the interface. The root cause is that two classes are loaded from different classloader thus the instanceof check failed. This appears to be a conflict due to the presence of same versions of jstl jars in the different distribution. Note: Do not include same jstl 2 jar files in your application (war file). 
- 
        3. Re: JSTL fmt tag fails in JBoss EAP 6.2antoine.rey Mar 10, 2017 11:01 AM (in response to andey)Thanks Anup. My problem has disapeared after some maven clean install and redeployment from my IDE. 
 
     
    