How can I write the freemarker templates like this:
<#import "spring.ftl" as s>
<@s.form path="object" action="/new.do" method="POST">
<@s.formInput "name"/> <!-- I want this resolved as "object.name" -->
<!--
100s of other properties...
-->
</@s.form>
instead of this:
<#import "spring.ftl" as s>
<form action="/new.do" method="POST">
<@s.formInput "object.name"/>
<!--
100s of other properties...
-->
</form>