با استفاده از تکه کد زیر مشکل من حل شد:
@BodyParser.Of(BodyParser.Json.class)
public Result someController() throws IOException {
List<Long> ids = new ObjectMapper().readValue(Controller.request().body().asJson().toString(),
TypeFactory.defaultInstance().constructCollectionType(List.class, Long.class));
.
.
.