By default, Jackson's ObjectMapper de-serialises unknown lists as ArrayList, can it be made to use String[] instead?
class SomeBean {
Object[] items;
}
For example, this JSON results in the type of items[0] being ArrayList:
{"items":[["a", "b"]]}
toArrayafter deserialization ? – Valentin Rocher Jan 4 '11 at 12:08