In a form there are many text fields and four multpart file and I have to send both together to the spring controller. Please sugget how it can be done in spring 3.x.
I am new to spring framework and did not find anyway. All the example I found is of Springboot not for the Spring 3.x
For sending multipart files and form data together to spring controller you can use below code snippet :
In JSP :
and in your controller you can receive data something like this :
You can go through this example : file upload
Another way to do this is something like this click here