python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
What version of Hibernate validator is suitable for J2ee 8?
I have problem with hibernate validator. When I want to deploy my application on local tomcat, It fails on :
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org...
Petr Kostroun
Votes: 0
Answers: 0
How to ensure hibernate dependencies are compatible without SpringBoot
I have the following hibernate dependencies
hibernate-core 5.4.3-Final
hibernate-ehcache 5.4.3-Final
hibernate-entitymanager 5.4.3-Final
hibernate-jpamodelgen 5.4.3-Final
hibernate-validator 5.4.3-Fi...
dasPing
Votes: 0
Answers: 2
Validate 1 field min and max based on another field value using JSR303 Validation
I have 2 fields
Class AgeDTO{
@Min(0)
private int minAge;
@Max(2)
private int maxAge;
private AgeType ageGroup;
}
How to validate minAge and maxAge based on ageGroup values as per below ...

Kapil Arora
Votes: 0
Answers: 0
with @SpringBootTest (or @WebfluxTest), the errors attribute disappears
I made very simple controller like below.
@PostMapping("/books")
public void create(@Valid @RequestBody BookPayload bookPayload) {
}
@Getter
@Setter
public class BookPayload {
@Not...

Louis Huh
Votes: 0
Answers: 1