One major event that reverberated across the entire tech ecosystem was the 2018 introduction of GDPR, the General Data Protection Regulation for European Citizens. While it remains to be seen I this will or will not impact British citizens, it offers a positive opportunity for Java developers to take interest in three areas of security: …
Category: dummyCategory
The 4 essential Java cyclomatic complexity testing tools
Worried about thorough code coverage? Do you wonder whether you tested every pathway through your code? One way to eliminate that anxiety is to integrate Java cyclomatic complexity testing tools into your build.
Behavioral Design Patterns: Observer – DZone Java
The observer behavioral design pattern can be used to tackle a wide range of problems in your code, like issues with tight coupling, object change, and more.
MicroProfile Talks at Devoxx: Videos
Watch MicroProfile talks from Devoxx from Ondrej Mihalyi, Adam Bien, Sebastian Daschner, and Emily Jiang.
How to Check if Java is Installed | Baeldung
Learn how to find out if Java is installed on a Windows 10, Mac OS X or Linux/Unix machine even if it’s not on the PATH.
Beware the Attach API
A post brought to light an interesting feature of the JDK I didn’t know about: the ability to update a code running in a JVM. The referenced post shows how to apply a bugfix using that feature. The devious white hat JVM hacker in me started to think how one
How to install Java 8 an 11 on Red Hat Enterprise Linux 8 Beta – RHD Blog
How to install Java 8 an 11 on Red Hat Enterprise Linux 8 Beta, and use alternatives to switche between multiple versions of Java.
Properly implementing Java modules in a Maven build with inter-module test dependencies
I have a multi-module project using Maven and Java. I am now trying to migrate to Java 9/10/11 and implement modules (as in JSR 376: Java Platform Module System, JPMS). As the project was already
A method is ambiguous upon passing a lambda expression in Java
4 Let’s have a functional interface Functional (for sake of brevity, I omitted the implementation and simplified the case): @Funct….
26 Reasons Why Using Optional Correctly Is Not Optional – DZone Java
We take a look at the top 25 most important concepts to keep in mind when working with Optionals in Java, focusing on null variables and more.
Top 6 Courses to Learn Spring Framework for Java Programmers – Best of Lot
Spring Framework is a very important skill for Java developers, not only to get a Job as a Java developer but also for your career advancem…
Jenkins community survey: Kubernetes usage rises 235% & Java crowned most used language – JAXenter
The fifth annual DevOps and Jenkins Community Survey is here and it brings some very interesting insights into the usage of technology environments, adoption of practices and DevOps maturity levels within organizations. Let’s take a closer look at the most interesting highlights.
5 Gradle plugins for working with modular Java projects
Java 9 was release in September 2017 and with it came a brand new modular platform known as JPMS, delivered by Project Jigsaw. Building projects that an leverage this new feature can be a bit daunt…