In the world of software development, handling data stored in CSV (Comma-Separated Values) files is quite common. Whether you’re importing user information, product lists, or analytics dataâ€
Micronaut tutorial
Welcome to the ultimate Micronaut tutorial on kscodes.com — your one-stop guide to learning everything about the powerful, modern, and lightweight JVM framework for building microservices, server
Building a Complete CRUD Application with Micronaut
Building a CRUD (Create, Read, Update, Delete) application is a foundational skill for any backend developer. In this tutorial, we’ll use Micronaut and Maven to build a Customer Relationship
Working in Reactive Programming with Micronaut (RxJava / Reactor)
Reactive programming is gaining popularity due to its efficiency in handling asynchronous data streams. Micronaut, with its built-in support for reactive paradigms like RxJava and Reactor, provides
Micronaut Event Handling and Publishing
Micronaut provides a lightweight and highly efficient event publishing mechanism. Events allow decoupled communication within your application, which is especially useful when different components
Creating Custom Annotations and Qualifiers in Micronaut
Micronaut promotes a clean, modular design by providing powerful annotation-based dependency injection. However, sometimes built-in annotations are not enough. That’s where custom annotations and
Micronaut scheduled tasks with @Scheduled
Micronaut provides powerful support for task scheduling using the @Scheduled annotation. Whether it’s sending emails, clearing temporary files, or syncing data, scheduled tasks can be a game-
Micronaut Custom Configuration and Property Injection
In modern cloud-native applications, externalizing configuration is key. Micronaut provides a powerful and easy-to-use mechanism for injecting custom properties and managing configuration. In this
AOP in Micronaut: Introduction to @Around and Interceptors
Aspect-Oriented Programming (AOP) is a powerful way to separate cross-cutting concerns like logging, security, or transactions from your core business logic. In Micronaut, AOP is implemented using
Micronaut and Micrometer: Metrics and Monitoring Made Simple
Monitoring is essential in modern applications. It helps track performance, diagnose issues, and understand system behavior. In Micronaut, Micrometer is the default metrics library that integrates