Tag: java
How to List All Kafka Topics
If you’ve stumbled upon this article, chances are you’ve already been working with Apache Kafka, the open-source distributed streaming platform that has gained significant popularity for its [more…]
Purging Kafka Topics
If you’ve been working with Kafka for a while, you’re probably aware of the importance of properly managing your Kafka topics. As the backbone of your data [more…]
Polymorphism in Java with Examples – 2023
Table of contents Polymorphism is the ability of an object to take on different forms. In Java, polymorphism refers to the ability of a class to provide [more…]
Prevent Cross-Site Scripting (XSS) in Spring Boot with Content-Security Policies (CSPs)
Introduction The security of users and their personal data while using a web application is paramount. While this guiding principle has been acknowledged even from the early [more…]
Guide to Simple Email Service (AWS SES) with Spring Boot and Spring Cloud
Introduction AWS SES (Simple Email Service) is a simple-to-setup email sending and receiving service. It is usually difficult, finicky and tedious to manage an on-premise email system, [more…]
Convert YAML Array into Java List with SnakeYAML
Introduction YAML is one of the most popular data serialization language after JSON. Therefore, it’s sometimes called as a strict superset of JSON. It has been designed [more…]
Calculate Distribution from Collection in Java
Turning a collection of numbers (or objects who’se fields you’d like to inspect) into a distribution of those numbers is a common statistical technique, and is employed [more…]