Android / Retrofit HAL JSON支持

时间:2017-05-12 08:42:03

标签: android json retrofit hal-json

我在Android项目中使用Retrofit来处理REST Web服务调用。现在我需要添加支持HAL JSON以便能够在我的列表中实现动态添加项目(在scrool上加载更多)。 哈利森:http://stateless.co/hal_specification.html

有人知道如何使用Retrofit处理它吗?

1 个答案:

答案 0 :(得分:0)

Gson-HAL实施 (Library Link)

上面的库将解释对象创建

Gson gson = new GsonBuilder()
.registerTypeAdapterFactory(new HalTypeAdapterFactory())
.create();

改造实施

RestAdapter restAdapter = new RestAdapter.Builder()
            .setEndpoint(BASE_URL)
            .setConverter(new GsonConverter(gson))
            .build();

它有一些Missing组件,可以通过修改库

来解决