Hi all,
Please ignore this post. Tried to delete this post but didn't find any option.
I rechecked code and turned out there was a @Valid on Car.User.
Sorry for trouble.
Thanks,
Santosh.
Type: Posts; User: sgp15; Keyword(s):
Hi all,
Please ignore this post. Tried to delete this post but didn't find any option.
I rechecked code and turned out there was a @Valid on Car.User.
Sorry for trouble.
Thanks,
Santosh.
Hi all,
JSR-303 validation on an Entity and form bean show different behaviors with respect to object graphs.
Consider following JPA Entity(s).
@Entity
public class User {
Hi all,
Using annotations I've mapped following URL.
@RequestMapping("/signup")
public String signUp(@Valid User user) {
}
In config I've mapped a view-controller as follows.