I have the following:
<html:select property="myMap(abc)">
However, I really need to make a string abcfrom a static member of the java class.
I thought something like
<html:select property="myMap(<%=MyClass.FIELD%>)">
but it didn’t work.
What is the correct syntax here?
source
share