I'm trying to put together a String in a tag-library like this:
<c:set var="columnText" value="${fn:join(columnText,'.pdf')}" />
<a href="${fn:join('http://host:8082/pdf/',columnText)}" >bla</a>
However this exception occurs:
javax.el.ELException: Cannot convert abcedfg of type class java.lang.String to class [Ljava.lang.String;
'abcdefg' is the content of columnText at first.