Could not deserialize object. Can't convert object of type java.util.ArrayList to type












0














Error Message :




java.lang.RuntimeException: Could not deserialize object. Can't convert object of type java.util.ArrayList to type com.example.model.Cart (found in field 'cart')




I had already referred to many similar questions and all were using Firebase Realtime database, whereas I am using Firebase Firestore.



The below classes are the classes I use for the database.



User.java :



public class User implements Serializable {

// Data
private String name, uid, mail, address;
private Long phone;
private ArrayList<Order> orders;
private Cart cart;

public User() {
orders = new ArrayList<>();
cart = new Cart();
}
/* Getters and Setters for all variables */
}


Cart.java :



public class Cart {

// Data
private ArrayList<SingleOrderItem> cart;

public Cart() {
cart = new ArrayList<>();
}

/* Getters and Setters for all variables */
}


SingleOrderItem.java :



public class SingleOrderItem {

// Data
private Product product;
private int quantity;
private Long cost;

/* Getters and Setters for all variables */
}


Product.java :



public abstract class Product {

// Data
private String id, name, picUrl;
private Long price;

/* Getters and Setters for all variables */
}


Adding data to Firebase Firestore :



//  Initialize Firebase variables
FirebaseAuth firebaseAuth = FirebaseAuth.getInstance();
FirebaseUser firebaseUser = firebaseAuth.getCurrentUser();
FirebaseFirestore firebaseFirestore = FirebaseFirestore.getInstance();

// Fetch item details from activity
SingleOrderItem singleOrderItem = new SingleOrderItem();
singleOrderItem.setProduct(sweet);
singleOrderItem.setQuantity(1);
singleOrderItem.setCost(sweet.getPrice());

// Get cart from user
Cart cart = user.getCart();
if (cart == null) {
cart = new Cart();
}
ArrayList<SingleOrderItem> cartProducts = cart.getCart();
cartProducts.add(singleOrderItem);
cart.setCart(cartProducts);

// Update cart to user
firebaseFirestore.collection("users").document(firebaseUser.getUid())
.set(cart, SetOptions.merge());


Retrieving data from Firebase Firestore :



//  Initialize firebase variables
FirebaseAuth firebaseAuth = FirebaseAuth.getInstance();
FirebaseUser firebaseUser = firebaseAuth.getCurrentUser();
FirebaseFirestore firebaseFirestore = FirebaseFirestore.getInstance();

if (firebaseUser != null) {
// Fetch data from firestore
firebaseFirestore.collection("users").document(firebaseUser.getUid())
.addSnapshotListener((documentSnapshot, e) -> {

if (documentSnapshot != null) {

// Save fetched data
User user = documentSnapshot.toObject(User.class);
userMutableLiveData.setValue(user);
}
});
}


I get the above error message in this particular line :




User user = documentSnapshot.toObject(User.class);




While retrieving data from Firebase Firestore.



What I am trying to do :
I am creating an e-commerce app and when the user clicks on Add To Cart button on any product, I would like to add it to the user's cart in firebase firestore.



Note :
Retrieving data is implemented in ViewModel.










share|improve this question




















  • 1




    Please add your database structure as a screenshot.
    – Alex Mamo
    Nov 22 at 12:02
















0














Error Message :




java.lang.RuntimeException: Could not deserialize object. Can't convert object of type java.util.ArrayList to type com.example.model.Cart (found in field 'cart')




I had already referred to many similar questions and all were using Firebase Realtime database, whereas I am using Firebase Firestore.



The below classes are the classes I use for the database.



User.java :



public class User implements Serializable {

// Data
private String name, uid, mail, address;
private Long phone;
private ArrayList<Order> orders;
private Cart cart;

public User() {
orders = new ArrayList<>();
cart = new Cart();
}
/* Getters and Setters for all variables */
}


Cart.java :



public class Cart {

// Data
private ArrayList<SingleOrderItem> cart;

public Cart() {
cart = new ArrayList<>();
}

/* Getters and Setters for all variables */
}


SingleOrderItem.java :



public class SingleOrderItem {

// Data
private Product product;
private int quantity;
private Long cost;

/* Getters and Setters for all variables */
}


Product.java :



public abstract class Product {

// Data
private String id, name, picUrl;
private Long price;

/* Getters and Setters for all variables */
}


Adding data to Firebase Firestore :



//  Initialize Firebase variables
FirebaseAuth firebaseAuth = FirebaseAuth.getInstance();
FirebaseUser firebaseUser = firebaseAuth.getCurrentUser();
FirebaseFirestore firebaseFirestore = FirebaseFirestore.getInstance();

// Fetch item details from activity
SingleOrderItem singleOrderItem = new SingleOrderItem();
singleOrderItem.setProduct(sweet);
singleOrderItem.setQuantity(1);
singleOrderItem.setCost(sweet.getPrice());

// Get cart from user
Cart cart = user.getCart();
if (cart == null) {
cart = new Cart();
}
ArrayList<SingleOrderItem> cartProducts = cart.getCart();
cartProducts.add(singleOrderItem);
cart.setCart(cartProducts);

// Update cart to user
firebaseFirestore.collection("users").document(firebaseUser.getUid())
.set(cart, SetOptions.merge());


Retrieving data from Firebase Firestore :



//  Initialize firebase variables
FirebaseAuth firebaseAuth = FirebaseAuth.getInstance();
FirebaseUser firebaseUser = firebaseAuth.getCurrentUser();
FirebaseFirestore firebaseFirestore = FirebaseFirestore.getInstance();

if (firebaseUser != null) {
// Fetch data from firestore
firebaseFirestore.collection("users").document(firebaseUser.getUid())
.addSnapshotListener((documentSnapshot, e) -> {

if (documentSnapshot != null) {

// Save fetched data
User user = documentSnapshot.toObject(User.class);
userMutableLiveData.setValue(user);
}
});
}


I get the above error message in this particular line :




User user = documentSnapshot.toObject(User.class);




While retrieving data from Firebase Firestore.



What I am trying to do :
I am creating an e-commerce app and when the user clicks on Add To Cart button on any product, I would like to add it to the user's cart in firebase firestore.



Note :
Retrieving data is implemented in ViewModel.










share|improve this question




















  • 1




    Please add your database structure as a screenshot.
    – Alex Mamo
    Nov 22 at 12:02














0












0








0







Error Message :




java.lang.RuntimeException: Could not deserialize object. Can't convert object of type java.util.ArrayList to type com.example.model.Cart (found in field 'cart')




I had already referred to many similar questions and all were using Firebase Realtime database, whereas I am using Firebase Firestore.



The below classes are the classes I use for the database.



User.java :



public class User implements Serializable {

// Data
private String name, uid, mail, address;
private Long phone;
private ArrayList<Order> orders;
private Cart cart;

public User() {
orders = new ArrayList<>();
cart = new Cart();
}
/* Getters and Setters for all variables */
}


Cart.java :



public class Cart {

// Data
private ArrayList<SingleOrderItem> cart;

public Cart() {
cart = new ArrayList<>();
}

/* Getters and Setters for all variables */
}


SingleOrderItem.java :



public class SingleOrderItem {

// Data
private Product product;
private int quantity;
private Long cost;

/* Getters and Setters for all variables */
}


Product.java :



public abstract class Product {

// Data
private String id, name, picUrl;
private Long price;

/* Getters and Setters for all variables */
}


Adding data to Firebase Firestore :



//  Initialize Firebase variables
FirebaseAuth firebaseAuth = FirebaseAuth.getInstance();
FirebaseUser firebaseUser = firebaseAuth.getCurrentUser();
FirebaseFirestore firebaseFirestore = FirebaseFirestore.getInstance();

// Fetch item details from activity
SingleOrderItem singleOrderItem = new SingleOrderItem();
singleOrderItem.setProduct(sweet);
singleOrderItem.setQuantity(1);
singleOrderItem.setCost(sweet.getPrice());

// Get cart from user
Cart cart = user.getCart();
if (cart == null) {
cart = new Cart();
}
ArrayList<SingleOrderItem> cartProducts = cart.getCart();
cartProducts.add(singleOrderItem);
cart.setCart(cartProducts);

// Update cart to user
firebaseFirestore.collection("users").document(firebaseUser.getUid())
.set(cart, SetOptions.merge());


Retrieving data from Firebase Firestore :



//  Initialize firebase variables
FirebaseAuth firebaseAuth = FirebaseAuth.getInstance();
FirebaseUser firebaseUser = firebaseAuth.getCurrentUser();
FirebaseFirestore firebaseFirestore = FirebaseFirestore.getInstance();

if (firebaseUser != null) {
// Fetch data from firestore
firebaseFirestore.collection("users").document(firebaseUser.getUid())
.addSnapshotListener((documentSnapshot, e) -> {

if (documentSnapshot != null) {

// Save fetched data
User user = documentSnapshot.toObject(User.class);
userMutableLiveData.setValue(user);
}
});
}


I get the above error message in this particular line :




User user = documentSnapshot.toObject(User.class);




While retrieving data from Firebase Firestore.



What I am trying to do :
I am creating an e-commerce app and when the user clicks on Add To Cart button on any product, I would like to add it to the user's cart in firebase firestore.



Note :
Retrieving data is implemented in ViewModel.










share|improve this question















Error Message :




java.lang.RuntimeException: Could not deserialize object. Can't convert object of type java.util.ArrayList to type com.example.model.Cart (found in field 'cart')




I had already referred to many similar questions and all were using Firebase Realtime database, whereas I am using Firebase Firestore.



The below classes are the classes I use for the database.



User.java :



public class User implements Serializable {

// Data
private String name, uid, mail, address;
private Long phone;
private ArrayList<Order> orders;
private Cart cart;

public User() {
orders = new ArrayList<>();
cart = new Cart();
}
/* Getters and Setters for all variables */
}


Cart.java :



public class Cart {

// Data
private ArrayList<SingleOrderItem> cart;

public Cart() {
cart = new ArrayList<>();
}

/* Getters and Setters for all variables */
}


SingleOrderItem.java :



public class SingleOrderItem {

// Data
private Product product;
private int quantity;
private Long cost;

/* Getters and Setters for all variables */
}


Product.java :



public abstract class Product {

// Data
private String id, name, picUrl;
private Long price;

/* Getters and Setters for all variables */
}


Adding data to Firebase Firestore :



//  Initialize Firebase variables
FirebaseAuth firebaseAuth = FirebaseAuth.getInstance();
FirebaseUser firebaseUser = firebaseAuth.getCurrentUser();
FirebaseFirestore firebaseFirestore = FirebaseFirestore.getInstance();

// Fetch item details from activity
SingleOrderItem singleOrderItem = new SingleOrderItem();
singleOrderItem.setProduct(sweet);
singleOrderItem.setQuantity(1);
singleOrderItem.setCost(sweet.getPrice());

// Get cart from user
Cart cart = user.getCart();
if (cart == null) {
cart = new Cart();
}
ArrayList<SingleOrderItem> cartProducts = cart.getCart();
cartProducts.add(singleOrderItem);
cart.setCart(cartProducts);

// Update cart to user
firebaseFirestore.collection("users").document(firebaseUser.getUid())
.set(cart, SetOptions.merge());


Retrieving data from Firebase Firestore :



//  Initialize firebase variables
FirebaseAuth firebaseAuth = FirebaseAuth.getInstance();
FirebaseUser firebaseUser = firebaseAuth.getCurrentUser();
FirebaseFirestore firebaseFirestore = FirebaseFirestore.getInstance();

if (firebaseUser != null) {
// Fetch data from firestore
firebaseFirestore.collection("users").document(firebaseUser.getUid())
.addSnapshotListener((documentSnapshot, e) -> {

if (documentSnapshot != null) {

// Save fetched data
User user = documentSnapshot.toObject(User.class);
userMutableLiveData.setValue(user);
}
});
}


I get the above error message in this particular line :




User user = documentSnapshot.toObject(User.class);




While retrieving data from Firebase Firestore.



What I am trying to do :
I am creating an e-commerce app and when the user clicks on Add To Cart button on any product, I would like to add it to the user's cart in firebase firestore.



Note :
Retrieving data is implemented in ViewModel.







android firebase google-cloud-firestore






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 at 12:12

























asked Nov 22 at 11:31









Abhi

13013




13013








  • 1




    Please add your database structure as a screenshot.
    – Alex Mamo
    Nov 22 at 12:02














  • 1




    Please add your database structure as a screenshot.
    – Alex Mamo
    Nov 22 at 12:02








1




1




Please add your database structure as a screenshot.
– Alex Mamo
Nov 22 at 12:02




Please add your database structure as a screenshot.
– Alex Mamo
Nov 22 at 12:02

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53430020%2fcould-not-deserialize-object-cant-convert-object-of-type-java-util-arraylist-t%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53430020%2fcould-not-deserialize-object-cant-convert-object-of-type-java-util-arraylist-t%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Sphinx de Gizeh

Dijon

Guerrita