I have a static global String constant named var within a bean id globalConstants. In my jsp, I can grab the content of it by ${globalConstants.var} . Now my var has a url like below:
<a href="<spring:url value="/fan/foo.html"/>">Foo</a>
However, the tag does not get evaluated to the correct url. But instead the whole tag is there. Is there anyway for my spring tags in the var variable get evaluated upon calling it ? Specifically, the given url should be something like this
<a href="/abc/fan/foo.html">Foo</a>