provide some sample code to upload multiple files in spring framework.
when i search solution for this everyone wrote jsp page like this :
<input type='file' name='files[]' multiple />
but this was not the scenario what i am really want
Here my jsp page code : multiFileSelect.jsp
<%@ page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<form action="upload" enctype="multipart/form-data" method="post">
<input name="files" type="file" multiple/>
<button type="submit"/>
</form>
</body>
</html>
Please help me...