Tag Archives: blogs

Dockerization of Java applications using Google Jib Plugin

Dockerization of Java applications using Google Jib Plugin

Prerequisites Basic docker knowledge & commands, can go through this blog Docker-For-Beginners by InnovationM. Introduction In this blog I will guide you step-by-step how to use google jib plugin with docker. What is Jib ? Jib is part of Google Container Tools which builds optimized Docker and OCI images for your java application and push Continue Reading »

Java 17 feature

Java 17 was released in September 2021 and it comes with several new features and improvements. In this blog, we will take a closer look at some of the most notable features of Java 17.  Sealed Classes (JEP 409)  Sealed classes are a new type of class introduced in Java 17. They provide more control Continue Reading »

Interceptor in Angular

What is an interceptor in angular? Interceptors are a unique type of Angular Service that we can implement. Interceptors allow us to intercept incoming or outgoing HTTP requests using the HttpClient. By intercepting the HTTP request, we can modify or change the value of the request. Interceptors are basic building blocks for Angular service so Continue Reading »

CORS – React JS

CORS stands for Cross-Origin Resource Sharing. It is basically a mechanism that uses HTTP headers to tell the browser whether a specific web app can share resources with another web app or not. Here Both the web apps should have different origins because if they have the same origin then they can share the resources Continue Reading »