Skip to content
Advertisement

Hybris and Orika Nullpointer

I’m using Hybris and Orika.
I have a NullpointerException when converting WsDto to Data.
This is an exception:

JavaScript

The issue – it happens in generated class so it’s very hard to debug.
I’ve also tried to enable code generation for Orika to check classes, but for some reason, the configuration doesn’t apply. I’ve done it this way:

JavaScript

My questions are:

  • Could you help me to enable this code generation for further debugging?
  • Could you point out why this exception could happen, since it’s not clear at the moment?

The exception in debug mode doesn’t provide data to me. enter image description here

Update
Found out that issue comes from mapping for fields, it’s done in XML this way:

JavaScript
When Data mapped to WsDto there is no issue, but when WsDto mapped to the Data there is a null pointer exception. Could you help me to figure out how to better configure two-way mapping for this?

Advertisement

Answer

The issue was because of the mapping configuration:

JavaScript

Custom mapper (extending de.hybris.platform.webservicescommons.mapping.mappers.AbstractCustomMapper) was created for this and solved an issue.
This issue happens in Hybris + Orika, for clean Orika (outside of Hybris) wasn’t able to reproduce this problem.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement