Jun 24Spring Boot Logback with ProfileLogging is a very important part of each application we will refer them to monitor and debug in different environments. But each environment might have different requirements. You may need different levels of logging in production compared to the development or testing environment. Spring Boot with Logback provides a simple…Spring Boot2 min read
Published in Better Programming·Jun 14Spring Boot and Swagger — Writing Good API DocumentationsDocumentations made easy — APIs are one of the key players in the technology world whether they are used in a simple mobile application in integrating complex enterprise systems. Any application can become a platform by enabling methods to enhance and add services to existing products using APIs. Having good documentation for these…Spring Boot5 min read
Jun 13Spring Boot & MongoDBMongoDB as the most popular NoSQL database is a source-available cross-platform document-oriented database program. It uses JSON-like documents with optional schemas and it is popular because of the ease with which data can be stored and retrieved. MongoDB Introduction MongoDB uses documents that contain a data structure composed of field and…Spring Boot4 min read
May 31Spring Boot ActuatorSpring Actuator is a set of additional product-ready features that help to monitor, manage and interact with the application. These features are effortless to enable and valuable to use. …Spring Boot4 min read
May 20Spring Boot Exception Handling — ResponseStatusExceptionError and Exception handling is essential for a web application and proper responses with reasonable details are required for better debugging and user experience. Spring Boot provides a /error mapping that handles all errors in a sensible way, and it is registered as a “global” error page in the servlet…Java3 min read
May 19Spring Boot Exception Handling — HandlerExceptionResolverError and Exception handling is essential for a web application and proper responses with reasonable details are required for better debugging and user experience. Spring Boot provides a /error mapping that handles all errors in a sensible way, and it is registered as a “global” error page in the servlet…Java3 min read
May 19Spring Boot Exception Handling — @ControllerAdviceError and Exception handling is essential for a web application and proper responses with reasonable details are required for better debugging and user experience. Spring Boot provides a /error mapping that handles all errors in a sensible way, and it is registered as a “global” error page in the servlet…Java4 min read
May 7Spring Boot Web FilterA Filter in the Spring Boot application is a solution used to intercept the HTTP requests and responses of your application. Filter helps us to perform two operations Before sending the request to the Dispatcher and Before sending a response to the client.Spring Boot3 min read
May 6Spring Boot InterceptorSpring Boot Interceptors are useful tools for intercepting the HTTP request process. The concept is similar to AOP pointcuts and you can have them easily plugged and unplugged from the HTTP request process flow.Spring Boot4 min read
Published in SelectFrom·Apr 27Spring Boot Kafka IntegrationApache Kafka is a distributed data streaming platform that can publish, subscribe to, store, and process streams of records in real-time. It is designed to handle data streams from multiple sources and deliver them to multiple consumers.Spring Boot6 min read