I have the following code in the controller
final ModelAndView m = new ModelAndView();
m.addObject("date", "15" );
In my opinion, I was able to deduce this by doing
${date}
However, how can I print it using out.print or assign it to a new variable for example.
<% out.print( ${date} ) %>
thank
source
share