Enabling tag libraries in jsp
- by noam
I feel like I am missing something - from what it seems, jsp comes out of the box with support for tags, as this question's answer shows (the guy was asking a pure-jsp question and got an answer involving tags).
But if I try to run the given code
<c:out value="${myString}"/>
(with myString defined before, of course), the jsp just writes the above line into the html.
Do I have to do something extra to enable it?