I know how to upload a file into the action class but my requirement is different. I have a list of pojo-s where each pojo contains a field called file.
for example:-
public class Pojo{
private int pk;
private File file;
//setters and getters
}
In my action class:-
public class MyAction{
private List<Pojo> pojos;
//setter getter
}
from my jsp when i select a file and say upload it has to set to the Pojo "file" property. how do i do that? I have complete idea of how to upload directly to the action class but now it is different. the file has to go and sit in the Pojo class file property. How can i do this?