Dibyojyoti SanyalSep 11, 20224 minExposing application statistics using JMX in springExplains how application statisctics and Metrics can be exposed via JMX
Dibyojyoti SanyalSep 26, 20214 minSimple Java Servlet MicroserviceAn example of a minimalistic Java servlet based micro service
Dibyojyoti SanyalSep 22, 20212 minSingle Module Executable Java ApplicationShows with example how to create a single module executable java application
Dibyojyoti SanyalSep 15, 20211 minPrint 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 minPrint 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 minClosable & 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 minHow 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 minHow 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 21, 20211 minHow 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.