Мне не удалось создать типКонвертер в комнате из-за ошибки. Кажется, я следую за документами. Я хотел бы преобразовать список в строку json. давайте посмотрим на мою сущность:
@Entity(tableName = TABLE_NAME)
public class CountryModel {
public static final String TABLE_NAME = "Countries";
@PrimaryKey
private int idCountry;
/* I WANT TO CONVERT THIS LIST TO A JSON STRING */
private List<CountryLang> countryLang = null;
public int getIdCountry() {
return idCountry;
}
public void setIdCountry(int idCountry) {
this.idCountry = idCountry;
}
public String getIsoCode() {
return isoCode;
}
public void setIsoCode(String isoCode) {
this.isoCode = isoCode;
}
public List<CountryLang> getCountryLang() {
return countryLang;
}
public void setCountryLang(List<CountryLang> countryLang) {
this.countryLang = countryLang;
}
}
country_lang - это то, что я хотел бы преобразовать в строку json. Поэтому я создал следующий конвертер: Converters.java:
public class Converters {
@TypeConverter
public static String countryLangToJson(List<CountryLang> list) {
if(list == null)
return null;
CountryLang lang = list.get(0);
return list.isEmpty() ? null : new Gson().toJson(lang);
}}
тогда проблема в том, что я помещаю @TypeConverters ({Converters.class}), я продолжаю получать ошибку. Но официально это то, где я разместил аннотацию, чтобы зарегистрировать типКонвертер:
@Database(entities = {CountryModel.class}, version = 1 ,exportSchema = false)
@TypeConverters({Converters.class})
public abstract class MYDatabase extends RoomDatabase {
public abstract CountriesDao countriesDao();
}
Ошибка, которую я получаю:
Error:(58, 31) error: Cannot figure out how to save this field into database. You can consider adding a type converter for it.