hi, i use springboot 2.6.3 version, but starter-validation did not work in spring-webflux.
spring-boot-starter-validation:2.6.3
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.2.0.Final</version>
<scope>compile</scope>
</dependency>
hibernate-validator:6.2.0.Final
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
but i see ValidationAutoConfiguration.class condition use javax.validation
, does it mean springboot-starter-validation does not work in spring-webflux?
Comment From: snicoll
but starter-validation did not work in spring-webflux.
What does this mean? Rather than doing your own analysis, please describe the problem you're facing. If you're looking for support, StackOverflow or Gitter is a more suitable place
Comment From: Vincent-ZHENG-008
@snicoll
hi, springboot-webflux how to use spring-boot-starter-validation? can use jsr303?
Comment From: snicoll
@WunHwan Hi, and Yes. As mentioned in the guidelines for contributing, we prefer to use GitHub issues only for bugs and enhancements. Please ask your questions on StackOverflow.