Tutorial on how to add JAR files manually to a VSCode project.
Also find me here:
Baeldung Author
Olayemi Michael
I started coding after high school for fun. Coding became passion and Java became my choice of language. I have 5 years experience developing REST APIs for e-commerce and procurement industry. My major focus include Java, Spring Boot, Databases and Rust. If I'm not coding, I write about nutrition and teach people healthy eating.
Here's what I've written (so far):
Baeldung on Java
- All
- Spring Boot (6)
- Networking (6)
- Java (6)
- Java IO (5)
- Reactive (3)
- Logging (3)
- Testing (2)
- Spring Security (2)
- Persistence (2)
- IDE (2)
- Core Java (2)
- Spring Web (1)
- Spring MVC (1)
- Maven (1)
- Java Web (1)
- Java List (1)
- Java Dates (1)
- Jakarta EE (1)
- JPA (1)
- HTTP Client-Side (1)
- Data (1)
- Artificial Intelligence (1)
- Architecture (1)
How to Send a Post Request in Camel
Filed under HTTP Client-Side
Tutorial on how to initiate a POST request with Apache Camel.
List All Files on the Remote Server in Java
Filed under Networking
Tutorial on how to list all files on a remote server using the JSch, Apache Mina SSHD, and SSHJ libraries.
Store File or byte[] as SQL Blob in Java (Store and Load)
Quick tutorial on how to store and retrieve BLOB data using Java Database Connectivity (JDBC).
Finding the Size of a Web File Using URLConnection in Java
Filed under Java IO, Networking
Quick tutorial on how to get the size of a web file in Java.
Introduction to BitcoinJ
Filed under Java
Introductory tutorial to BitcoinJ – creating a wallet, funding the wallet, and sending some coins other wallets.
Comparison Between Flux.map() and Flux.doOnNext()
Filed under Reactive
The Flux object in reactor allows us to map elements as well as perform operations on them using doOnNext. We look at the differences between mapping and doOnNext.
Using Reactor Mono.cache() for Memoization
Filed under Reactive
In this tutorial, we learn about memoization and demonstrate how to use Mono.cache() from the Project Reactor.
Spring WebClient exchange() vs retrieve()
Filed under Reactive, Spring Web
In this article, we explore the key methods from the WebClient interface, including retrieve(), exchangeToMono(), and exchangeToFlux().