In a Struts2 Action class, if I had a method named calculate(), which does some calculation and displays the results, how could I call this method from the JSP using Struts tags such as <s:property value="calculate"/> ?
If I named the method getCalculate(), then <s:property value="calculate"/> would work, but is it possible to use invoke that method with method name calculate()?