spring-guides / gs-uploading-files

Uploading Files :: Learn how to build a Spring application that accepts multi-part file uploads.

Home Page:http://spring.io/guides/gs/uploading-files/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

wilkinsona opened this issue · comments

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"