我从使用Volley迁移到Retrofit,我已经拥有了之前使用的gson类,用于将JSONObject响应转换为实现gson注释的对象。当我尝试使用改造来制作http get请求但我的应用程序崩溃时出现此错误:
Unable to start activity ComponentInfo{com.lightbulb.pawesome/com.example.sample.retrofit.SampleActivity}: java.lang.IllegalArgumentException: Unable to create converter for class com.lightbulb.pawesome.model.Pet
for method GitHubService.getResponse
我正在关注retrofit网站中的指南,我想出了这些实现:
这是我尝试执行复古http请求的活动:
public class SampleActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_sample);
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("**sample base url here**")
.build();
GitHubService service = retrofit.create(GitHubService.class);
Call<Pet> callPet = service.getResponse("41", "40");
callPet.enqueue(new Callback<Pet>() {
@Override
public void onResponse(Response<Pet> response) {
Log.i("Response", response.toString());
}
@Override
public void onFailure(Throwable t) {
Log.i("Failure", t.toString());
}
});
try{
callPet.execute();
} catch (IOException e){
e.printStackTrace();
}
}
}
我的界面变成了我的API
public interface GitHubService {
@GET("/ **sample here** /{petId}/{otherPet}")
Call<Pet> getResponse(@Path("petId") String userId, @Path("otherPet") String otherPet);
}
最后,Pet类应该是响应:
public class Pet implements Parcelable {
public static final String ACTIVE = "1";
public static final String NOT_ACTIVE = "0";
@SerializedName("is_active")
@Expose
private String isActive;
@SerializedName("pet_id")
@Expose
private String petId;
@Expose
private String name;
@Expose
private String gender;
@Expose
private String age;
@Expose
private String breed;
@SerializedName("profile_picture")
@Expose
private String profilePicture;
@SerializedName("confirmation_status")
@Expose
private String confirmationStatus;
/**
*
* @return
* The confirmationStatus
*/
public String getConfirmationStatus() {
return confirmationStatus;
}
/**
*
* @param confirmationStatus
* The confirmation_status
*/
public void setConfirmationStatus(String confirmationStatus) {
this.confirmationStatus = confirmationStatus;
}
/**
*
* @return
* The isActive
*/
public String getIsActive() {
return isActive;
}
/**
*
* @param isActive
* The is_active
*/
public void setIsActive(String isActive) {
this.isActive = isActive;
}
/**
*
* @return
* The petId
*/
public String getPetId() {
return petId;
}
/**
*
* @param petId
* The pet_id
*/
public void setPetId(String petId) {
this.petId = petId;
}
/**
*
* @return
* The name
*/
public String getName() {
return name;
}
/**
*
* @param name
* The name
*/
public void setName(String name) {
this.name = name;
}
/**
*
* @return
* The gender
*/
public String getGender() {
return gender;
}
/**
*
* @param gender
* The gender
*/
public void setGender(String gender) {
this.gender = gender;
}
/**
*
* @return
* The age
*/
public String getAge() {
return age;
}
/**
*
* @param age
* The age
*/
public void setAge(String age) {
this.age = age;
}
/**
*
* @return
* The breed
*/
public String getBreed() {
return breed;
}
/**
*
* @param breed
* The breed
*/
public void setBreed(String breed) {
this.breed = breed;
}
/**
*
* @return
* The profilePicture
*/
public String getProfilePicture() {
return profilePicture;
}
/**
*
* @param profilePicture
* The profile_picture
*/
public void setProfilePicture(String profilePicture) {
this.profilePicture = profilePicture;
}
protected Pet(Parcel in) {
isActive = in.readString();
petId = in.readString();
name = in.readString();
gender = in.readString();
age = in.readString();
breed = in.readString();
profilePicture = in.readString();
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(isActive);
dest.writeString(petId);
dest.writeString(name);
dest.writeString(gender);
dest.writeString(age);
dest.writeString(breed);
dest.writeString(profilePicture);
}
@SuppressWarnings("unused")
public static final Parcelable.Creator<Pet> CREATOR = new Parcelable.Creator<Pet>() {
@Override
public Pet createFromParcel(Parcel in) {
return new Pet(in);
}
@Override
public Pet[] newArray(int size) {
return new Pet[size];
}
};
}
答案 0 :(得分:184)
在2.0.0
之前,默认转换器是gson转换器,但在2.0.0
中,默认转换器为ResponseBody
。来自文档:
默认情况下,Retrofit只能将HTTP主体反序列化为OkHttp
ResponseBody
类型,它只能接受RequestBody
类型@Body
。
在2.0.0+
中,您需要明确指定您想要一个Gson转换器:
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("**sample base url here**")
.addConverterFactory(GsonConverterFactory.create())
.build();
您还需要将以下依赖项添加到gradle文件中:
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
使用与转换相同的版本转换器。以上内容与此改进依赖性相匹配:
compile ('com.squareup.retrofit2:retrofit:2.1.0')
另外,请注意,写这篇文章时,改版文档并没有完全更新,这就是为什么这个例子让你陷入困境的原因。来自文档:
注意:此站点仍在为新的2.0 API进行扩展。
答案 1 :(得分:125)
如果有人在将来遇到这种情况,因为您正在尝试定义自己的自定义转换器工厂并且收到此错误,也可能是因为在具有相同序列化名称的类中具有多个变量。 IE:
public class foo {
@SerializedName("name")
String firstName;
@SerializedName("name")
String lastName;
}
将序列化名称定义两次(可能是错误的)也会抛出同样的错误。
更新:请记住,此逻辑也可通过继承实现。如果使用与子类中具有相同序列化名称的对象扩展到父类,则会导致同样的问题。
答案 2 :(得分:14)
只需确保您没有两次使用相同的序列化名称
@SerializedName("name") val name: String
@SerializedName("name") val firstName: String
只需删除其中之一
答案 3 :(得分:8)
根据热门评论我更新了我的导入
implementation 'com.squareup.retrofit2:retrofit:2.1.0'
implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
我已经使用http://www.jsonschema2pojo.org/来创建来自Spotify json结果的pojo,并确保指定Gson格式。
现在有Android Studio插件可以为您创建pojo或Kotlin数据模型。 mac的一个很好的选择是Quicktype。 https://itunes.apple.com/us/app/paste-json-as-code-quicktype/id1330801220
答案 4 :(得分:3)
就我而言,我的模态类中有一个TextView对象,而GSON不知道如何序列化它。将其标记为“瞬态”&#39;解决了这个问题。
答案 5 :(得分:2)
@Silmarilos的帖子帮助我解决了这个问题。就我而言,就是我使用“ id”作为序列化名称,例如:
@SerializedName("id")
var node_id: String? = null
然后我将其更改为
@SerializedName("node_id")
var node_id: String? = null
现在所有工作。我忘记了“ id”是默认属性。
答案 6 :(得分:1)
这可能会帮助某人
在我的情况下,我错误地这样写了SerializedName
@SerializedName("name","time")
String name,time;
应该是
@SerializedName("name")
String name;
@SerializedName("time")
String time;
答案 7 :(得分:0)
嘿,我今天遇到同样的问题,我花了一整天的时间来找到解决方案,但这是我最终找到的解决方案。 在我的代码中使用Dagger,我需要在改造实例中实现Gson转换器。
所以这是我之前的代码
@Provides
@Singleton
Retrofit providesRetrofit(Application application,OkHttpClient client) {
String SERVER_URL=URL;
Retrofit.Builder builder = new Retrofit.Builder();
builder.baseUrl(SERVER_URL);
return builder
.client(client)
.build();
}
这就是我最终得到的
@Provides
@Singleton
Retrofit providesRetrofit(Application application,OkHttpClient client, Gson gson) {
String SERVER_URL=URL;
Retrofit.Builder builder = new Retrofit.Builder();
builder.baseUrl(SERVER_URL);
return builder
.client(client)
.addConverterFactory(GsonConverterFactory.create(gson))
.build();
}
请注意第一个示例中没有转换器,如果尚未实例化Gson,则添加转换器,您可以像这样添加它
@Provides
@Singleton
Gson provideGson() {
GsonBuilder gsonBuilder = new GsonBuilder();
gsonBuilder.setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES);
return gsonBuilder.create();
}
,并确保已将其包括在改造的方法调用中。
再次希望这对像我这样的人有帮助。
答案 8 :(得分:0)
在我的情况下,这是由于尝试将服务返回的List放入ArrayList中。所以我当时是:
@Json(name = "items")
private ArrayList<ItemModel> items;
我应该有的时间
@Json(name = "items")
private List<ItemModel> items;
希望这对某人有帮助!
答案 9 :(得分:0)
在我的情况下,问题是我的SUPERCLASS模型在其中定义了此字段。非常愚蠢,我知道。...