I'm trying to do something like the following inside my JSP:
${product.renewal ? "Yes" : "No: ("+ product.months + ")" }
where product.months is an int. I cannot concatenate an int with the String "No: ". How do I resolve this? Using jstl format?
Thanks