Forcing escaping of HTML characters (less-than, ampersand) in JSON using Jackson 1. The problem Jackson handles escaping of JSON String values in minimal way using escaping where absolutely necessary: it escapes two characters by default -- double quotes and backslash -- as well as non-visible control characters. But it does not escape other characters, since this is not required for producing val

