I've got a POJO with several String properties
public class Pojo {
private String firstName;
private String lastName;
....
//getters...
//settesr...
Whats the best way to tell Jackson to destabilize the properties so that empty strings will map to NULL values.
I do no wish to do that in the getters (as I have a lot of POJO properties), is there a simple annotation for that (on the class level)?