Manage HTTP Sessions with Spring Session MongoDB
Spring Session MongoDB is a library that enables Spring applications to store and manage HTTP session data in MongoDB rather than relying on …

Tim Kelly
1,028 viewsSpring Session MongoDB is a library that enables Spring applications to store and manage HTTP session data in MongoDB rather than relying on …

Tim Kelly
6,006 viewsThe Data Access Object (DAO) pattern is a structural pattern that isolates your application's business logic from persistence operations. By …

Tim Kelly
21,892 viewsIn modern software design, it is important to develop code that is clean and maintainable. One way developers do this is using the Service …

Tim Kelly
10,721 viewsRunning MongoDB in Kubernetes introduces challenges that don’t exist with stateless applications. By default, Kubernetes doesn’t understand …

Tim Kelly
9,709 viewsREST has become the default choice for building web services, and for good reason. It’s straightforward to implement, easy for clients to …

Tim Kelly
10,227 viewsMongoDB’s support for multi-document ACID transactions gives you flexibility when single-document atomicity isn’t enough.

Tim Kelly
4,407 viewsLet's use MongoDB with LangChain4j to create a simple RAG application. LangChain4j abstracted away a lot of the steps along the way, from …

Tim Kelly
14,260 viewsMongoDB is built to be fast. The real win comes from knowing how to keep it that way, even as your app grows and your data gets more …

Tim Kelly
21,189 viewsBSON is at the core of how MongoDB stores and transmits data. It extends JSON with additional data.

Tim Kelly
17,617 viewsCreate a Spring app that can stream in financial transactions from Apache Kafka, and upon insertion into the database, can use Atlas Vector …