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)
can i controll the @Valid, @Transactional order in the web tier
@RestController
public class GoodsController {
@Autowired
private GoodsDao goodsDao;
@Autowired
private GoodsService goodsService;
@PostMapping("test1")
@Transactio...

smileis2333
Votes: 0
Answers: 0
Spring Data Rest - validate Bean before save
I've been searching for the simplest and best way to validate my entities before they are created/updated and after much googling, I couldn't find a clean/modern one.
Ideally, I would have loved to be...
Marco
Votes: 0
Answers: 2
Bean validation annotation (@Size)not working properly
import org.javers.core.metamodel.annotation.DiffIgnore;
import javax.persistence.*;
import javax.validation.constraints.Max;
import javax.validation.constraints.Size;
import java.util.Set;
@NoArgsC...

Rahad Mannan
Votes: 0
Answers: 3
Bean validation can validate both size of a List and maximum length of each elements
How can I set a bean validation constraint that a List should at minimum contain 1 and at maximum contain 4 elements, at the same time, check the maximum length of each elements
the following annotati...
Neil
Votes: 0
Answers: 2