Does Grails command object support multiple MultipartFile?

214 Views Asked by At

I want to store multiple image in Grails application. So, command object of grail support multiple MultipartFile files.

1

There are 1 best solutions below

3
Anton Hlinisty On

Did you try something like that?

class ImageUploadCommand implements Validateable {
    List<MultipartFile> images
}