Dibyojyoti SanyalSep 11, 20224 min readExposing application statistics using JMX in springExplains how application statisctics and Metrics can be exposed via JMX
Dibyojyoti SanyalSep 26, 20214 min readSimple Java Servlet MicroserviceAn example of a minimalistic Java servlet based micro service
Dibyojyoti SanyalSep 22, 20212 min readSingle Module Executable Java ApplicationShows with example how to create a single module executable java application
Dibyojyoti SanyalSep 15, 20211 min readPrint request and response headers using HttpServletRequest and HTTPServletResponseShows how HTTP requests and responses can be printed when needed for trouble shooting in a plain Java micro service
Dibyojyoti SanyalAug 4, 20211 min readPrint request and response headers using HttpRequest and HttpResponseShows how HTTP requests and responses can be printed when needed for trouble shooting in a plain Java micro service
Dibyojyoti SanyalJul 7, 20216 min readClosable & secure http connectionShows how a closable and TLS secured connection can be created to a remote server in a plain Java micro service
Dibyojyoti SanyalMay 29, 20213 min readHow to create cache of caches using google guava cache ?We use google guava cache to keep key value pairs. This post shows how to handle cache of caches.
Dibyojyoti SanyalMar 21, 20216 min readHow to expose app. statistics by implementing JMX & view them in JConsole with namespace & grouping?Example of real life application of Java Management Extensions in cloud native development.
Dibyojyoti SanyalMar 20, 20211 min readHow to traverse a Json tree and how to find and extract nested elements in Json?JSON is a standard to send data over HTTP in cloud native development. An example that shows JSON can be parsed.