Post JSON para o Spring Controller

Oi eu estou começando com o Web Services no Spring, por isso estou tentando desenvolver pequena aplicação no Spring + JSON + Hibernate. Eu tenho algum problema com o HTTP-POST. Eu criei um método:

@RequestMapping(value="/workers/addNewWorker", method = RequestMethod.POST, produces = "application/json", consumes = "application/json")
@ResponseBody
public String addNewWorker(@RequestBody Test test) throws Exception {
    String name = test.name;
    return name;
}

E meu teste de modelo se parece com:

public class Test implements Serializable {

private static final long serialVersionUID = -1764970284520387975L;
public String name;

public Test() {
}
}

Pelo POSTMAN estou enviando simplesmente JSON {"name": "testName"} e sempre recebo erro;

The server refused this request because the request entity is in a format not supported by the requested resource for the requested method.

Eu importei a biblioteca de Jackson. Meus métodos GET funcionam bem. Eu não sei o que estou fazendo errado. Sou grato por qualquer sugestão.

questionAnswers(4)

yourAnswerToTheQuestion