Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Spring 3.2.0 and Hibernate Tools 3.2.1.GA and HibernateValidator to validate forms. I need to upload multiple files like,

<input type="file" id="fileProdImage" name="fileProdImage" accept="image/*" multiple="multiple"/>

Uploading of multiple files goes fine with Spring 3.2.0.


With a single file upload, I was validating an image field according to this answer.

I have tried to do the same thing while uploading multiple files but nothing happened in the constraint validator class.

My bean class looks something like this which is associated with the Spring form <form:form></form:form>.

public final class ProductImageBean
{
    @MultiImageExtension(extension={"jpg", "jpeg", "png", "gif", "bmp"}, message="Only jpg, jpeg, gif, png and bmp formats are allowed.", groups={ProductImageBean.ValidationGroup.class})
    private MultipartFile[]fileProdImage;
    public interface ValidationGroup{}

    //Setters and getters.
}

The constraint descriptor is as follows.

@Target( { METHOD, FIELD, ANNOTATION_TYPE })
@Retention(RUNTIME)
@Constraint(validatedBy = MultiImageExtensionValidator.class)
@Documented
public @interface MultiImageExtension
{
    public String message() default "{validatorbeans.ProductImageBean.fileSize}";
    public Class<?>[] groups() default {};
    public Class<? extends Payload>[] payload() default {};
    public String[]extension() default "";
}

and the following is the constraint validator.

public final class MultiImageExtensionValidator implements ConstraintValidator<MultiImageExtension, MultipartFile[]>
{
    private String []extension;

    public void initialize(MultiImageExtension multiImageExtension)
    {
        extension=multiImageExtension.extension();
    }

    public boolean isValid(MultipartFile[] multipartFiles, ConstraintValidatorContext cvc)
    {
        boolean isValidated=true;

        try
        {
            int len=multipartFiles.length;
            for(int i=0;i<len;i++)
            {
                System.out.println(multipartFiles[i].getOriginalFilename()); //Nothing is displayed here.

                //Logic for validation.
            }
        }
        catch (final Exception e)
        {
            System.out.println(e.toString());
        }

        return isValidated;
    }
}

In the preceding class, I'm right now just trying to display the multipartFiles[] array but nothing happens here. The property private MultipartFile[]fileProdImage; inside the ProductImageBean is indeed populated as all the images which are uploaded by a client can be retrieved in the Spring controller class, I have tried.

With a single file upload, the same approach works fine. Is there a way to supply the array MultipartFile[]fileProdImage to the Constraint validator and perform validation accordingly using HibernateValidator?

share|improve this question
The property private MultipartFile[]fileProdImage; inside the bean ProductImageBean is not bound to the validation strategy at all. – Tiny Jan 4 at 19:46

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.