Learn how to add or remove elements from Java collections fluently by leveraging a few lesser known APIs in Eclipse Collections.
Category: Articles
10 Unit Testing and Integration Tools and Libraries for Java Developers
In last a couple of weeks, I have written some articles about what Java developer should learn in 2019 e.g. programming languages , librari…
Announcing the general availability of Java support in Azure Functions | Blog | Microsoft Azure
Azure Functions provides a productive programming model based on triggers and bindings for accelerated development and serverless hosting of event-driven applications. It enables developers to build…
Student of Berufsschule Freising, Germany, is now an Oracle Certified Associate Java SE 8 Programmer
Marc Schröder, a student of the vocational school BerufsschuleFreising in Munich, is currently undertaking dual study as a“Computer Science Expert for…
5 Courses to Learn RESTful Web Services With Java and Spring in 2019 – DZone Integration
In this article, we share some of the best courses to learn REST API development in the Java world using Spring.
Hottest Coding Languages | 2019 State of Software Engineering Report | Hired
See the correlation between a candidate’s experience with given programming language and a company’s interest in interviewing them for a position. Its all right here in Hired’s 2019 State of Software Engineers report. Click to learn more.
21 String Programming and Coding Interview Questions With Solutions
In this article, I am going to share 21 of the most common String based Programming and Coding interview questions from Java developer inte…
A Quick Guide to Microservices With the Micronaut Framework – DZone Microservices
A developer and architect takes a look at the Micronaut framework and gives a tutorial on how to build a microservice application using this framework.
MythBusters: Five scenarios where JRebel helps developers create more, higher-quality Java code | zeroturnaround.com
We walk you through five popular use cases for Java developers and demonstrate how JRebel can transform your development process.
Use Java method modifiers to avoid public method antipattern
There is a reason why Java method modifiers exist. If you call public methods internally and don’t understand why, your developers could face major class issues.
A quick look at inferred types and the Java var keyword – Coffee Talk: Java, News, Stories and Opinions
Here’s a quick look at the var keyword and what it looks like when you use Java inferred types in your code.
What is Docker and How is it Used with Payara Server and Payara Micro?
The Docker platform makes it easier to create, deploy and run applications using containers. By packaging the required dependencies, you can run it on any machine. Start a container from a Docker image, define the process and the files needed to run it, like the Payara Server installation and your application.
Helidon Java Microservices Framework Hits 1.0 Release — ADTmag
Project Helidon, Oracle’s nascent Java Microservices Framework, which was unveiled less than five months ago, is now available in a 1.0 release that includes full support for Eclipse MicroProfile 1.2 (Helidon MP), support for Eclipse Yasson and Jackson (Helidon SE) and numerous bug fixes and performance improvements.
JavaFX Proguard Obfuscation
I’m struggling with obfuscation of JavaFX application. Using this project as a base: https://github.com/openjfx/samples/tree/master/IDE/IntelliJ/Non-Modular/GradleProguard throws this error:j…
Featured enum instead of switch
Problem and its solution Switch/case is the common control structure implemented in most imperative programming languages. Switch is con…