Blog

JSON Logging in Spring Boot simplifies setup, especially for applications in distributed environments like Kubernetes. Consolidated logging requires searchable logs, often formatted in JSON. Logstash is a popular choice. A basic Logback configuration supports JSON logging, aiding development with profile flexibility. Testing can be done by generating log messages easily.

In the first part of this series, we provided an overview of ChatGPT. We also explored the optimal application of basic prompt priming to achieve more effective responses from ChatGPT. This post is specifically designed for programmers interested in learning how to effectively use modifiers to craft prompts. If you haven’t yet gone through Part […]Continue reading

Programming has always been about communicating with machines. However, with the advancement of AI, there is an increasing demand for programming tools that can communicate with humans too. This is where AI Tools, like Github Copilot and ChatGPT come in. This series of posts is designed for programmers who are interested in learning how to […]Continue reading

Spring Boot Microservices requires authentication of users, and one way is through JSON Web Token (JWT). JWT is an open standard (RFC 7519) that defines a compact mechanism for securely transmitting information between parties. In this post, I will explain how to implement JWT authentication in Spring Microservices. JWT Token Overview JWT is of relatively […]Continue reading