%{control.current + #displayRows}
is ultimately the statement I need executed. I have it in an s:if tag and I use test to see if this value lies within a certain range.
Ultimately, I get string concatenation and not addition because both side of the addition are not regarded as numeric types by OGNL. Doing a little tinkering, I see that
%{control.current + control.current}
does result in numerical addition, so indeed the displayRows value which was set in an s:set tag earlier is regarded an the non-numeric value. Here is my s:set tag:
<s:set name="displayRows" value="%{#application['app_settings'].settings['MAX ACCESS FIELD TITLES ROWS']}" />
The settings represents a Map in Java. Whereas the key is always a String ... well ... the value is not always an Integer because assorted application settings are being stored. So the best we can do for value type is Object. And I believe this is the problem. OGNL does not regard this as something which can be converted automatically to a numeric type.
I have gone through the langauge guide at http://incubator.apache.org/ognl/language-guide.html which explains some of these concepts, but I do not see a way to tell OGNL "Yes this displayRows which contains the value of 15 REALLY is an integer". Is there a way to make this happen. I need to be able to do addition on the fly so I cannot create additional attributes in Javaland to assist me. I have looked at the OGNL, the s:set tag and the Java level and I do not see a proper place where I can make this happen.