This blog will demonstrate how to secure Payara Server with Apache over HTTPS on Ubuntu.
Category: Articles
In JDK 9 (and well 8) and above everything can be a stream
In JDK 8 we finally got to use streams and everything was good apart from the times when the API you…
APIGEE – An Introduction to API Gateway
In this article I want to give brief introduction about APIGEE. Mainly APIGEE offers below functiona…
JShell: A Comprehensive Guide to the Java REPL
JShell provides an interactive shell for quickly prototyping, debugging, and learning Java and Java APIs. In this article, we’ll take a comprehensive look at JShell, understanding all its commands, its uses, and how to use it most effectively.
Abstract Factory Pattern in Java | Baeldung
Understand the abstract factory design pattern along with its Java implementation.
Mockito – Verify multiple method calls with different arguments
Learn to write unit test which invokes a method multiple times with different arguments – and then verifies the method invocations and method arguments.
Another year, another Java advent calendar – JVM Advent 2018
Another year is nearing its end. Finally time for another edition of the Java Advent calendar. With this post, we are embarking on the sixth edition and I am very proud of having the honor to kick off this new season. And instead of picking one particular topic to write about, I thought it might …
Recent changes and what’s next for Java: “OpenJDK is the future of Java” – JAXenter
It’s time to focus on the thing that drives Java’s future; OpenJDK. We talked to Red Hat’s Rich Sharples about Java’s future and their role in all this.
Shortest Code and Lowest Latency in Java – DZone Java
In this post, we look at writing code that executes at maximum speed while still keeping coding to a minimum, looking at code from a coding challenge.
Top 5 IntelliJ IDEA and Android Studio Courses for Java and Android Development – Best of Lot
There is no doubt that IntelliJ IDEA is THE best IDE for Java development, even though Eclipse may still be probably used by more people b…
Retrieving a Class Name in Java | Baeldung
Explore different ways to retrieve a class name in Java.
Create a Build Pipeline with Travis CI | Baeldung
Learn how to build and deploy software using Travis CI pipelines
Java lambda only throwing expression-style instead of statement-style
This question already has an answer here: Supplier
Join Array of Primitives with Separator in Java | Baeldung
Learn how to join an array of primitives with a separator character or string in Java.
Why doesn’t Java have an EmptyQueueException?
In the pop method of java.util.Stack, it throws an EmptyStackException if the Stack is empty. But the remove method of java.util.Queue (which is similar to pop in the Stack class) instead throws a