无法为java.util.List创建转换器Retrofit 2.0.0-beta2

时间:2015-12-16 15:09:23

标签: java android retrofit

我只是在做一个GET请求,但是我收到了这个错误:

  

java.lang.RuntimeException:无法启动活动ComponentInfo {com.example.yomac_000.chargingpoint / com.example.yomac_000.chargingpoint.AllStores}:java.lang.IllegalArgumentException:无法为java.util.List创建转换器

这是因为这行代码:

Call<List<Store>> call = subpriseAPI.listStores(response);

所以我尝试使用这行代码来查看它是什么类型:

System.out.println(subpriseAPI.listStores(response).getClass().toString());

但后来我得到了同样的错误,所以它不让我知道它是什么类型。在下面你可以看到我的代码。

StoreService.java:

public class StoreService {

    public static final String BASE_URL = "http://getairport.com/subprise/";
    Retrofit retrofit = new Retrofit.Builder()
            .baseUrl(BASE_URL)
            .build();

    SubpriseAPI subpriseAPI = retrofit.create(SubpriseAPI.class);
    String response = "";

    public List<Store> getSubprises() {

        Call<List<Store>> call = subpriseAPI.listStores(response);

        try {
            List<Store> listStores = call.execute().body();

            System.out.println("liststore "+ listStores.iterator().next());
            return listStores;
        } catch (IOException e) {
            // handle errors
        }
        return null;
    }
}

SubpriseAPI.java:

public interface SubpriseAPI {
    @GET("api/locations/get")
    Call<List<Store>> listStores(@Path("store") String store);
}

Store.java:

public class Store {
    String name;
}

我正在使用Retrofit版本2.0.0-beta2。

2 个答案:

答案 0 :(得分:26)

在2+版本中,您需要通知转换器

  

CONVERTERS

     

默认情况下,Retrofit只能将HTTP主体反序列化为OkHttp   ResponseBody类型,它只能接受其RequestBody类型   @body。

     

可以添加转换器以支持其他类型。六个兄弟模块   为方便起见,调整流行的序列化库。

     

Gson:com.squareup.retrofit:converter-gson Jackson:com.squareup.retrofit:converter-jackson
  Moshi:com.squareup.retrofit:converter-moshi
  Protobuf:com.squareup.retrofit:converter-protobuf
  Wire:com.squareup.retrofit:converter-wire
  简单XML:com.squareup.retrofit:converter-simplexml

// Square libs, consume Rest API
compile 'com.squareup.retrofit:retrofit:2.0.0-beta1'
compile 'com.squareup.okhttp:okhttp:2.4.0'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta1'

所以,

String baseUrl = "" ;
Retrofit client = new Retrofit.Builder()
    .baseUrl(baseUrl)
    .addConverterFactory(GsonConverterFactory.create())
    .build();

答案 1 :(得分:4)

http://example.com/collage/student/200

您声明了一个名为<rule name="Redirect to school with ONE parameter" stopProcessing="true"> <match url="^.*/([^/]+)/?$" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="school/student.cfm?id_Name={R:1}" /> </rule> 的商店,因此在您的public interface SubpriseAPI { @GET("api/locations/get") Call<List<Store>> listStores(@Path("store") String store); } 注释中,期望找到替换的占位符。 E.g。

@Path