-
Java 18 – starter kit
Started doing some GISTS around Java 18., The new String text block to convert String objects to a JSON string., here is the quick GIST
-
Resume Builder- Full stack Engineer
It is getting tricky being a full stack engineer in free lance world. So if you have a belt of experience, and want to tailor an resume stack with your skills, each engagement demands a new version of your resume based on the technical stack that is needed, I tght of doing a mini series…
-
CosmosDB and H2 dual update.
Trying to get to the habit of blogging often this year. New year’s resolution, hoping I can make it as a habit. One of the interesting thing I was struggling was to try out was a dual update to two data-sources and work through a model where spring batch kicks off the entire workflow. Azure…
-
ZGC options with Java 16
Java 16 provides production ready ZGC garbage collection. For example here is a sample code that is going to run out of memory with a regular JRE integration, I compared the code run with Java 8 and Java 16. There is an option to log the GC cycles with a VM option, but i felt…
-
Java 16 logging
One of the features I liked in Java16 are the logging changes. The updated logging API works on handlers. There are different handlers FileHandler, MemoryHandler and ConsoleHandler. Depending on the need, these handlers can be configured in runtime. Here is a scenario., if you want to debug or pipe entry of the logging information going…