|

Spring Boot : Enabling HTTPS (SSL) Using Cloudflare Certificate

In this blog post, I will explain how to enable HTTPS (SSL) in Spring Boot applications using Cloudflare SSL certificate. For enabling SSL in Spring Boot applications we can use self signed certificate if you are running application in local development machine but in production you have to use certificate issued by Certificate Authority. In…

|

Deploying Spring Boot Applications on Oracle Cloud

In this tutorial, I will show how to deploy Spring Boot application on Oracle Cloud in Ubuntu Server and access the API from Internet. Oracle Cloud provides 2 AMD based instances (1 ocpu, 1GB RAM) with their free tier account. We will deploy the spring boot application on the one of AMD instance and make…

Building Spring Boot 3 Native Image Container on Apple Silicon and ARM64 based Systems

In this blog post I will show to build native image container for Spring Boot 3 apps with GraalVM on Apple silicon or ARM64 based system (Oracle Cloud Ampere processor VM) In my previous blog post, I have covered how to build native image for Spring Boot 3 based applications . I have discussed about…

Building Native Image of Spring Boot 3 apps with GraalVM

In this post, we will learn what is native image, how to build native image of Spring Boot 3 application with GraalVM. In general we deploy spring boot application by building jar file and run those jar file with jvm installed those systems. The Java code written is first compiled into bytecode during the build…