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 answers

3
Anton Hlinisty On

Did you try something like that?

class ImageUploadCommand implements Validateable {
    List<MultipartFile> images
}