In struts I notice there are two different ways to access variables. I am curious what the difference is and when to properly use each one. For example, suppose we set the variable height like so:
<s:set var="height">300px</s:set>
Now I can use it two ways:
<div style="height: ${height}"> </div>
..or..
<div style="height: <s:property value='#height' />"> </div>
What is the difference, and which is better to use?