Category: Technical
-
Spring Boot loading static content
We will try to quickly how to go about loading and serving static content using Spring Boot 2. There was a difference in how boot 2.0.0 was loading static resources to 2.1 version now. In this article, we will take a simple web application and load the static resources that are defined in the resource […]
-
Design benchmarks
This is a long-form write-up. The comment that goes something like this., Which means that the people who speak louder online, with higher frequency and reach, are not necessarily the ones striving for Independence, Depth, Honesty, or Breadth through the content they create. They are not necessarily the ones equipped with the experience and knowledge […]
-
Quickest way of getting an custom error message in Spring Boot 2.x
There are different ways to get a custom error message page in spring boot. The following solution worked for my web project. Here is the overview of the structure. Pic To start with, if there is 404 error, then we want a custom error page showing up instead of the spring boot’s default page. The […]
-
Free-code camp Inventory update solution
One other interesting problem with the inventory update challenge from freecodecamp. After this, it is going to be the modules for creating calculators and other challenges. function updateInventoryWithArr(curInv, newInv) { var arr1 = curInv; var arr2 = newInv; var finalOutPutArr = []; var arr1Map = new Map(); var arr2Map = new Map(); var arr3Map = […]
-
Bootstrap 4 Tutorial
One of a kind tutorial, packed with all that is needed to start Bootstrap 4. When we are debugging an issue for some server side issue, we will need to know a lot of nit-picky details of Bootstrap. But this was a quite a walk thro’ of all the items that are needed to know […]