Hello, I'm creating a generic form so that I can parameterize some attributes. I want to do the following:
<sf:form cssClass="form" modelAttribute="<tiles:getAsString name="modelAttribute"/>" action="<tiles:getAsString name="action"/>" />
When I do this however, when I load the screen I get the following exception:
org.apache.jasper.JasperException: /forma-page.jsp (line: 4, column: 81) equal symbol expected
When I do not use the specific spring tag, the code works. I would like to use this way to be able to validate using BeanValidation.