Skip to content
Advertisement

Firebase Auth not getting initialized in spring boot

I am using firebase admin sdk in my spring boot app. (API app)

When I run locally in intelliJ its working fine. But when deployed in tomcat its giving me NPE.

In Springboot application

JavaScript

In API code

JavaScript

ERROR:

JavaScript

Can someone help in fixing this issue. Thank you in advance.

Advertisement

Answer

You shouldn’t create an instance of Firebase like this in the main method. Probably your service account is not being found in the proper classpath. I would create a Spring Configuration which creates a Firebase app on application startup. I have kept my service account in the root of resources folder.

JavaScript

Now if I want to use Firebase Auth in any of my service classes I would just do the following:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement