-
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
How to check if two lists are equal in Java
A short article focused on a widespread problem in testing if two list instances are identical, or rather say if they contain the same elements in the same order. Continue reading
How to convert a Map to an Array in Java
This tutorial is about several approaches to converting Java’s Map interface implementations into the Java array. Continue reading
Posted in Language basics
Tagged array, Collection, conversion, HashMap, Java, LinkedHashMap, Map, TreeMap
Leave a comment
How to sort a map with Java 8
This tutorial shows how to sort Java Map implementations with Java 8 streams by map’s key or value properties. Continue reading
How to load files from Spring JUnit test resources folder
In this short tutorial, you will see how to read the files from the /src/test/resources test directory path in your Spring application. Continue reading
Posted in Tutorials
Tagged ClassLoader, Java, Java 7, JUnit, legacy project, Maven, Spring, testing
Leave a comment
How to remotely debug Java application in IntelliJ
This article is a simple tutorial on how to debug your JAR or WAR file remotely. Continue reading
Posted in Tips & tricks
Tagged bytecode, debug, IDE, IntelliJ Idea, JAR, Java, Maven, maven build, monolith, port exhaustion, remote, session exhaustion, Slack, stack, war
Leave a comment
How to trigger action with Scheduler and Quartz in Camel
This article is about triggering action with Scheduler and Quartz components in Camel Continue reading
How to download a file from Azure Claud Storage
In this article, we will look into the way how to download a file from Azure Cloud Storage for legacy API Continue reading
Bit manipulation operators in Java
Java offers a possibility for bit manipulation with bit operators in its code. This article will go through all the operators with real-life Continue reading
How to use IntStream range in Java
This article talks about the average use case of loop count variable usage via IntStream API Continue reading
How to build with Maven without running tests
This article will show you multiple ways how to skip the test in your Maven build Continue reading
Posted in Tips & tricks
Tagged build, JAR, Java, Maven, optimization, POM, speed, Spring, SpringBoot, Surefire, tests
2 Comments