Hi all, let me share my experience on how to enable secure application-level data transport support for a Spring Boot application from scratch in a development environment.
SSL or Secure Sockets Layer and TLS or Transport Layer Security are cryptographic protocols, and SSL is a now-deprecated ancestor of TLS. Both the protocols are used for creating an encrypted connection between a web server and a web browser.
Self Signed SSL certificate is a security certificate that is used for non-production environment in order to test SSL endpoint features as it is easy to create and do not cost money. …
Hi everyone, in this post, I will share my experience on how to create a custom event service in Angular using observables which is based on the principle of observer pattern and is similar to the principle of publish/subscribe design pattern.
In observer pattern, an object known as subject maintains a record of its dependents known as observers and informs them implicitly whenever there is a state change. …
Let me share my experience on what is LicenseMain task failure and how did I resolved it. Since you’re reading this post, it’s safe to assume that you already know about Gradle and use of Copyright License Header. Still, I will like to share a brief about Gradle and Copyright License Header.
What is Gradle?
In short, Gradle is an open source build tool which uses a Groovy-based domain-specific language unlike Maven and Ant which uses XML and is mainly used to automate task.In general it helps in building software faster and does increases developers productivity.
What is Copyright License Header? …
Let me share my experience on how to create and build a docker based java application step by step. Since you’re reading this tutorial, it’s safe to assume that you already know about docker, containerization and java. Still, I will like to share a little bit about docker and containerization.
What do we mean by containerization ?
Containerization is a process of deploying and running distributed applications i.e. a group of processes in isolation without using an entire virtual machine for each distributed application and is allowed to run on a single host and access the same OS kernel.In …
Hi everyone in this post I will like to share my experience how I used PrimeNg progress bar module to build a custom element.
Custom elements are angular elements that are packaged as a part of angular components also known as web components.A custom element creates a customized tag that extends HTML and is created using JavaScript code.
In order to create a custom element with progress bar we need to add the progress bar component to our application and than create a custom component on top of it.
In this example I will create a custom element called “task-status”. This task-status will have a component file, html template file and css file. …
Polling is a process by which the client continuously request data from the server without any user interaction. It is mainly used to track the long running back-end process status.
With RxJS we can achieve Polling in Angular.
RxJS(Reactive Extensions for JavaScript) is a library for reactive programming using Observable that makes it easier to compose asynchronous or callback-based code.
RxJS library is used in Angular.
Let’s get started with an example. Suppose, we have a requirement to update the status of a food delivery, based on actions taking place for this delivery.
In this case, we can use Polling to display the continuous progress of the delivery and stop once the delivery process is completed. …
About