Explore Java’s latest enhancement, Context-Specific Deserialization Filter (JEP 415), in action.
Also find me here:
Baeldung Author
Ulisses Lima
By day, I write new code, I improve bad code, and I try to enforce performance standards. Mostly in Java. I also love automating stuff. Mostly in bash. By night, I write technical articles and write tools for personal management. For fun: I'm a Street Fighter player (3rd Strike and V), trying to learn Japanese.
Here's what I've written (so far):
Baeldung on Java
- All
- Spring Data (6)
- NoSQL (6)
- Testing (4)
- Spring Boot (3)
- Java (3)
- HTTP Client-Side (3)
- Spring Web (2)
- REST (2)
- Java IO (2)
- Jackson (2)
- Core Java (2)
- Web Services (1)
- Spring WebFlux (1)
- Security (1)
- Reactive (1)
- Java Numbers (1)
- Java Map (1)
- Java Dates (1)
- Jakarta EE (1)
- JSON (1)
- JPA (1)
- Data (1)
MongoDB Atlas Search Using the Java Driver and Spring Data
Filed under Spring Data
A quick and practical guide to MongoDB Atlas search with Spring Data.
Custom DLL Load – Fixing the “java.lang.UnsatisfiedLinkError” Error
Filed under Java
Explore common causes like incorrect library names, missing directory specifications, and incompatible architectures. Implement solutions such as setting java.library.path and using proper classloaders to resolve this error effectively.
MongoDB – Field Level Encryption
Filed under NoSQL
A practical guide to field-level encryption with MongoDB.
Extracting a Tar File in Java
Filed under Java IO
In this tutorial, we explore Java libraries for extracting tar archives: Apache Commons Compression, Apache Ant, and Apache VFS. The article provides concise code snippets and highlights the key features of each approach. Read on to learn efficient ways of extracting tar archives in Java.
Stream Large Byte[] to File With WebClient
Filed under HTTP Client-Side, Spring Web
This is a short tutorial about how to stream a large file to a file using a DataBuffer and what’s the role of ExchangeStrategies in WebClient.
Calling JMX MBean Method From a Shell Script
Filed under Core Java
Learn how to access MBeans from a shell script.
How to Insert a HashMap Into MongoDB With Java?
Learn how to insert HashMap into MongoDB.
Limiting the Requests per Second With WebClient
Filed under Reactive, Spring WebFlux
Learn various ways of limiting the request per second of a web client.