I am working on the Struts2 framework with JSP. I have in my *.properties file:
hover_remove=Remove access to {0} at {1}`
I have in my JSP, within a submit tag:
title="%{getText('hover_remove', new String[]{{appLabel}, {locationLabel}})}"
which would work in Java, but I'm getting the following error in JSP:
/WEB-INF/pages/admin/cm/view.jsp(9,287)
JSPG0055E: Unable to create an xml attribute from name
Any tips for using getText(String, List String[])
in JSP?