springboot add to collection firebase

// Assuming that you have the google sdk setup correctly
package za.co.migal.service;

import com.google.api.core.ApiFuture;
import com.google.cloud.firestore.DocumentReference;
import com.google.cloud.firestore.Firestore;
import com.google.firebase.cloud.FirestoreClient;
import org.springframework.stereotype.Service;

@Service()
public class MyPojoService {
  private Firestore firestore;
  private static final String MY_POJO_COLLECTION = "myPojo";
  
  public boolean addMyPojo(MyPojo myPojo) {
    firestore = FirestoreClient.getFirestore();
    ApiFuture<DocumentReference> myPojoRef = firestore.
      collection(MY_POJO_COLLECTION).
      add(myPojo);
    return myPojoRef.isDone();
  }
}

// MyPojo class
package za.co.migal.pojo;

import com.google.api.core.ApiFuture;
import com.google.cloud.firestore.DocumentReference;
import com.google.cloud.firestore.Firestore;
import com.google.firebase.cloud.FirestoreClient;

// FYI
// I usually use Lombok @Data instead of adding getters and setters
// @Data removes boiler point code, it just makes the code alot cleaner 
public class MyPojo {
  private String myVariable;
  private int myIntVariable;
  
  public String getMyVariable() {
    return myVariable;
  }
  public void setMyVariable(String myVariable) {
    this.myVariable = myVariable;
  }
  public int getMyIntVariable() {
    return myIntVariable;
  }
  public void setMyIntVariable(int myIntVariable) {
    this.myIntVariable = myIntVariable;
  }
  
  @Override
  public String toString() {
    return "Option{" +
      "myVariable='" + myVariable + '\'' +
      ", myIntVariable=" + myIntVariable +
      '}';
  }
  
  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    Option option = (Option) o;
    return myIntVariable == option.myIntVariable &&
      myVariable.equals(option.myVariable);
  }

  @Override
  public int hashCode() {
    return Objects.hash(myVariable, myIntVariable);
  }
}

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source