Json – How to prevent Jackson from serializing @class attribute in lists with known types?
I'm using Jackson in my Java application to serialize objects that contain lists of a known type. However, Jackson is adding an @class attribute to each item in the list, which I want to omit. Here's an example of the…