-
Pages
-
Recent Posts
- How to connect to an EC2 instance over SSH
- Simple algorithm for casting strings to double
- How to make multipart requests with file and object through autogenerated code defined in OpenAPI
- How to make multipart requests with files through autogenerated code defined in OpenAPI
- How to compile and run Java files on Windows
Categories
-
Tag Archives: Java
Compare all elements in an array against each other in Java
One of the most common requests when processing an array is to compare each element against all other elements in the array. An abstract solution to this request is demonstrated in this article in Java Continue reading
How to connect Azure Cosmos DB Emulator with Spring Boot app at Windows
In this article, we look at installing Azure Cosmos DB Emulator on your Windows machine and using the Azure Cosmos DB Emulator for local development of our Spring Boot application. Continue reading
How to loop over HashMap in Java
HashMap is one of the most used data collection. There are several ways how to loop over it and get what you need. We will show five different ways how to loop over HashMap. So what is the best way to … Continue reading