You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a class that has @Valid annotation, in a different package from the model package is referenced, the generated code comes out as Set<@Valid com.common.model.Pojo> which is not correct.
The correct code should be Set<com.common.model.@Valid Pojo>
The text was updated successfully, but these errors were encountered:
When a class that has
@Valid
annotation, in a different package from the model package is referenced, the generated code comes out asSet<@Valid com.common.model.Pojo>
which is not correct.The correct code should be
Set<com.common.model.@Valid Pojo>
The text was updated successfully, but these errors were encountered: