Spring Projects Issues
Spring Projects Issues
Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue.
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be...
Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue.
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be...
Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue.
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be...
Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue.
**[Kazuki Shimizu](https://jira.spring.io/secure/ViewProfile.jspa?name=kazuki43zoo)** commented I've submitted the PR.
**[Kazuki Shimizu](https://jira.spring.io/secure/ViewProfile.jspa?name=kazuki43zoo)** commented Memo: There is a workaround using a extension point as follow: ```java package com.example.infra.spring.validation; import org.springframework.validation.beanvalidation.LocalValidatorFactoryBean; import javax.validation.metadata.ConstraintDescriptor; import java.lang.annotation.Annotation; import java.util.Collection; import java.util.HashSet; import java.util.Set; public...
**[Feliks Khantsis](https://jira.spring.io/secure/ViewProfile.jspa?name=doom7777)** commented what are you talking about? Validation groups have been supported since forever. public class Book { `@NotNull`(groups={Edit.class}) `@Null`(groups={Registration.class}) private int id; @NotNull private String title; }