我正在使用 JSP 开发 Struts2 框架。我的*.properties文件中有:
hover_remove=Remove access to {0} at {1}`
我在我的 JSP 中有一个提交标记:
title="%{getText('hover_remove', new String[]{{appLabel}, {locationLabel}})}"
这可以在 Java 中工作,但我在 JSP 中收到以下错误:
/WEB-INF/pages/admin/cm/view.jsp(9,287)
JSPG0055E: Unable to create an xml attribute from name
getText(String, List String[])
在 JSP
中使用的任何提示?