Dive into the world of advanced test scripting with JMeter and BeanShell from generating dynamic request data to aggregating performance metrics.
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)
HTTP DELETE With Request Body
Filed under REST, Spring Web
This article explores sending DELETE requests with bodies using popular REST clients like Spring’s RestTemplate and Apache HTTP libraries. Dive deeper to see how each client tackles the body and explore the code examples to see which method might be the best fit for your project.
How to Execute a Scheduled Task Only Once for a Spring Boot Application
Filed under Spring Boot
Learn how to execute a scheduled task only once for a Spring Boot application.
Rapid Web Application Development With Spring Boot and Jmix
Filed under Spring Boot
In this tutorial, we’ll learn how to use the Jmix Studio and Jmix Framework for IntelliJ IDEA to build a full-stack MVP for a Spring Boot application.
Consumer Acknowledgments and Publisher Confirms with RabbitMQ
Filed under Data
RabbitMQ doesn’t usually provide delivery guarantees. However, there are some features we can turn on to gain send and receipt acknowledgements. In this article, we explore these features and how to use them.
Set Format for Instant Using ObjectMapper
Filed under Jackson
Learn how to format an Instant using Jackson’s ObjectMapper.
Intro to the Apache Commons Compress Project
Filed under Java
In this tutorial, we explore Apache Commons Compress, a library for file compression, archiving, and extraction. It supports various formats like TAR, ZIP, GZIP, BZIP2, and more.
Custom Event Handlers and Listeners in Netty
Filed under Java
Learn to make a basic chat room using Netty. Key features include custom event handlers, server bootstrapping, and event listeners.
Find Files by Extension in Specified Directory in Java
Filed under Java IO
Learn to use core Java and external libraries to search for files in a directory (including sub-directories) that match a specific extension.