Showing posts with label firebase. Show all posts
Showing posts with label firebase. Show all posts

Thursday, September 12, 2024

Upload files to Firebase Hosting with Java

Sometimes you might need a Java based solution to upload files to Firebase Hosting to publish your recently generated static files. 

For instance, I use Firebase Hosting to store JSON data files generated by AWS Lambda functions (written in Java+Spring Cloud Function), and these files will be loaded into a mobile app.

This is when "firebase-hosting-api-java" open source library comes into the picture.

Tuesday, December 29, 2020

Create deployment to Firebase Hosting with Java

In this article I'd like to introduce "firebase-hosting-api-java", which is an API library for Firebase Hosting REST API written in Java 8. It supports all available V1Beta1 services, such as query the releases, delete deployment versions and so on. From version 0.4, theres a common service called createDeploy(), which is a combination of all deployment related function, and this is the recommended function for deployment.

Configure and use VSCode for Java web development

Embarking on Java web development often starts with choosing the right tools that streamline the coding process while enhancing productivity...