Evaluating the DMN rules

Hi Team,

I am trying to find a way where in I can evaluate the parameters well before calling the DMN Engine.
Like If we have to check if the input param is mandatory and the type of the Param is String or INT.
And if at all any of the validations fails then the custom exception has to be thrown which we should be able to catch from the client where I will call the DMN Process.

Thanks,
Naveen

Hi
if you are using Springboot with an embedded engine and you expose a custom API using a spring Rest controller, you can use Spring’s built in validation (JSR 380) on the REST API payload.

regards

Rob