Is there any way to do validation like NotNull, Size, etc through SpringData librarirs for MongoDB?
|
feedback
|
|
As I'm sure you know, a lot of MongoDB validation has to be enforced in the software layer, since the database itself is schemaless. However, I don't think that validation is part of SpringData. We'd need to know more about what technologies you're using in order to give a specific recommendation for how to do validation. Still, here are a few options (it looks like you're already familiar with some of them):
| ||||
|
feedback
|
|
You can use MongoEventListeners + JSR 303 validation for that. I described how to do it on my blog | |||
|
feedback
|