Skip to content
Advertisement

javax’s @Valid annotation usage scenario

Is it possible to use @Valid (javax.validation.Valid) in below scenario?

JavaScript

Here JsonStringToObjectConvertor is taking in JSON in form of String and mapping it to IncidentModel class. I have defined few validations in IncidentModel in below manner and I want to validate the fields mapped by ObjectMapper in IncidentModel before proceeding further:

JavaScript

It does not seem to work in the above format, is there any alternative to use the @Valid in the convertToObject method?

Thanks for your help.

Advertisement

Answer

You can do something as follows:

JavaScript

You could then optimize this and make ValidatorFactory factory and Validator validator instance variables of JsonStringToObjectConverter so that you don’t recreate them every time you call convertToObject method.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement