FireBase Crud operation in Spring Boot
                       Hello Geeks, hope you are healthy and doing well in this tough time. In this particular blog post, I am going to share the simple way in which you can connect to Google's firebase real-time database. Of course, we will use some of the basic dependencies to connect our spring boot to firebase. I am going to use maven based configuration.   Here, I am sharing a sample spring boot application with simple crud operation on firebase real-time DB. So, first of all, initialize our application from the  spring initializer  and extract, import the downloaded project into your favorite IDE.   Dependencies I am adding here :    	 Spring boot starter web  	 Spring firebase admin   Here is my pom.xml.     <?xml version="1.0" encoding="UTF-8"?>  <project  xmlns= "http://maven.apache.org/POM/4.0.0"           xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"           xsi:schemaLocation= "http://m...
 
