UPD In fact, integration with Jackson is implemented in Spring ( MappingJacksonHttpMessageConverter
), you just need to connect its libraries, see the answer @Nofate.
In order for the @Nofate option to work, you must first add a converter, since there is no converter for arrays of strings in Spring. SO shows how this can be done (configuration should seem to be simplified in Spring 3.1M1): in short, this is just an implementation of the interface / abstract class of the converter and its registration.
In the converter itself, you can use, for example, Jackson , for conversion.
If you only need it once, you can do it directly:
@RequestMapping(value = "/deleteelements.form") @ResponseBody public String deleteElements(@RequestBody byte[] data) { // делает то же самое, что делали бы конвертере, // скармливаем Jackson'у байтовый массив }