In the Spring docs, the section on multipart support has an example of specifying a multipart form as this:
<form method="post" action="upload.form" enctype="multipart/form-data">
This doesn't use the Spring form tags which I am familiar with and instead submits the form to the upload.form
action.
How does Spring know what upload.form
means? Do you have to create a mapping for it and, if so, where is this done?