-
Recent Posts
Recent Comments
- HIMMELRIGHT2374 on Bit manipulation operators in Java
- Null pointer exception when stubbing – Ask Android Questions on 3 basic mistakes for NullPointerException when Mock
- Javier Cuevas on How to create custom range calendar filter for Angular PrimeNg data turbo table
- Jagadeesh Uppalapati on 3 basic mistakes for NullPointerException when Mock
- How to create file in different directory in PHP | Codepills.com on How to create a folder in PHP if it doesn’t exist
Archives
- January 2021
- December 2020
- November 2020
- August 2020
- February 2020
- November 2019
- June 2019
- May 2019
- May 2018
- April 2018
- August 2017
- June 2017
- May 2017
- December 2016
- November 2016
- March 2016
- January 2016
- December 2015
- January 2014
- December 2013
- October 2013
- June 2013
- April 2013
- May 2012
- March 2012
- February 2012
- July 2011
- April 2011
- March 2010
- January 2007
- September 2006
- July 2006
Categories
Meta
Tag Archives: Java
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 examples and explanation. 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
Leave a comment
Compare all elements in an array against each other in Java
One of the most common requests when processing array is to compare each element against all other elements in the array. Abstract solution on this request is demonstrated in this article in Java language. Continue reading
How to connect Azure Cosmos DB Emulator with Spring Boot app at Windows
In this article, we look on how to install Azure Cosmos DB Emulator on your Windows machine and how to use 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