Friday, August 28, 2020

Difference between JVM, JIR, JRE, and JDK in Java

JRE, JVM, and JDK are three terms you often heard in conjunction with Java programming language, and most people either confuse them or think they all are the same. In this Java article, you will learn what is Java Run-time (JRE), what is Java Virtual Machine (JVM) and...

Wednesday, August 26, 2020

Java Creates New Big Data Opportunities

If you think that we live in the age of digital information, you are totally right. But do you know just how much data is generated globally? It is impossible to determine the exact figure, but rough estimations say that people, machines, and organizations create more than 2.5...

Monday, August 24, 2020

Testing with Hoverfly and Java Part 1: Get started with Simulation Mode

These days a major problem exists when it comes to testing code that has to do with various cloud services where test tools are not provided. For example although you might have the tools for local Pub/Sub testing, including Docker images you might not have anything that can...

Friday, August 21, 2020

Java Exercises for Beginners

Many people who tried learning to program never become programmers. Why? Among all the reasons, one can single out the most important: these people didn’t have enough practice. So if searching for Java programming exercises is a clever decision. Plus, practicing programming itself is a very exciting experience...

Monday, August 17, 2020

How to do test refactoring towards fluent assertion pattern?

What are Clean Tests? The Clean Code rules apply equally to the production code and the test code. So do code cleanup every time, including when you write tests. You will often notice opportunities for refactoring right after adding a new test or even before writing it. This...

Friday, August 14, 2020

Different ways to remove Spaces from String In Java

String manipulation is done most often while programming. Like removing spaces in or around the string text. This also known as ‘strip’ping off spaces in the string. So up till now we are all aware of the different ways to remove spaces from string in java, namely trim,...

Pages (26)1234567 »