Pessoal, estou serializando para Json um objeto que contém uma lista que pode ser nula.
result.use(json()).withoutRoot().from(pai).
include("filhos").
include("filhos.neto").
serialize();
Se não existir o neto está gerando uma exception
br.com.caelum.vraptor.InterceptionException: exception raised, check root cause for details: java.lang.IllegalArgumentException: Field path filhos.neto doesn’t exist
Seria possível contornar este problema diretamente no Serializer?
Alguma dica?
Obrigado