Suppose I have a custom tag that takes a List of Strings:
<%@ attribute name="thelist" type="java.util.List<java.lang.String>"
required="true" %>
How can I create this attribute in the jsp that calls the tag? I could use a scriptlet
<tags:list thelist='<%= java.util.Arrays.asList("blah","blah2") %>' />
but is there any way to do this using Expression Language, since that seems to be preferred?