spring-guides / gs-uploading-files

Uploading Files :: Learn how to build a Spring application that accepts multi-part file uploads.
http://spring.io/guides/gs/uploading-files/
Apache License 2.0
469 stars 503 forks source link

Text mentions REST endpoints which doesn't seem relevant to this guide #12

Closed wilkinsona closed 9 years ago

wilkinsona commented 9 years ago

In Spring, REST endpoints are just Spring MVC controllers. The following code provides the web app with the ability to upload files.

FileUploadController isn't a REST endpoint. A better description might be "In Spring MVC a controller is used to handle file upload requests. The following code provides the web app with the ability to upload files"