我需要获取所有电影的清单。
我处于这种情况,我不知道如何管理它。 我的项目分为两个较小的项目。后端项目和前端项目。 产生包含电影列表的Json的后端部分。
该服务具有此模式
@GET
@Produce(json) // here is a particular library and it funcion correctly.
List<Film> getAllFilms
调用此服务的输出具有以下模式:
[{"title:abc","time": 5486448}, {....}, {....}]
在前端项目中,我正在使用Resteasy。 我创建了一个类服务来调用后端并管理响应
List<Film> film= new ArrayList<>();
try{
ResteasyClient client = new ResteasyClientBuilder().build();
ResteasyWebTarget target = client.target("http://localhost:8080/film");
Response response = target.request().get();
film= List<Film>) response.readEntity(Film.class);
我有这种类型的例外:
javax.ws.rs.ProcessingException: org.codehaus.jackson.map.JsonMappingException: Can not deserialize instance of FILM out of START_ARRAY token
现在我想要了解一些东西,但是有充足的材料,我正在消失。 如何将数组解组到列表中?
答案 0 :(得分:0)
您可以使用jackson的readValue
方法将其转换为List
public List<Film> convert(String jsonString) throws JsonParseException, JsonMappingException,
IOException {
ObjectMapper objectMapper = new ObjectMapper();
List<Film> filmList = objectMapper.readValue(
jsonString,
objectMapper.getTypeFactory().constructCollectionType(
List.class, Film.class));
return filmList;
}