1.<s:set name="str" value="hello world"></s:set>
<s:property value="%{@com.Test@func(#str)}"/>
其中func是com.Test中的一个静态方法
2.<s:bean name="com.Test" id="t"></s:bean>
<s:property value="#t.func(#str)"/>
其中func是com.Test中的一个普通方法
调用Action中一个静态方法:<s:property value="@com.action.LoginAction@getString()"/>
调用JDK中的类的静态方法: <s:property value="@java.lang.Math@floor(44.56)"/>
调用JDK中的类的静态方法:<s:property value="@@floor(44.56)"/>
调用JDK中的类的静态方法:<s:property value="@java.util.Calendar@getInstance()"/>
调用普通类中的静态属性:<s:property value="@com.dto.Address@TS"/>