1

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

Cœur
  • 37,241
  • 25
  • 195
  • 267
Robin
  • 31
  • 4

1 Answers1

1

Did you try something like that?

class ImageUploadCommand implements Validateable {
    List<MultipartFile> images
}
Anton Hlinisty
  • 1,441
  • 1
  • 20
  • 35