Ace your next Java coding interview by mastering in data structures and algorithms. Deep dive using Java
Category: dummyCategory
Understanding Jakarta EE: “The platform needs to evolve more dynamically than it had done in the past” – JAXenter
Confused about what’s going on with Jakarta EE? This interview series is meant to help you navigate through the changes. Our third guest: Josh Juneau.
JDK 11 Rampdown Phase Two: Getting closer to the finish line – JAXenter
JDK 11’s Rampdown Phase Two is here & the overall feature set is frozen. What does this mean for the next Java version? JDK 11 will be released in September
Java 11 Features – Java Flight Recorder
In this article we will see how we can leverage Java Flight Recorder feature as part of Java 11. Earlier it was one of the commercial feature. But with Java 11 with JEP …
Leveraging Lambda Expressions for Lazy Evaluation in Java
In Java, the potential of lazy evaluation is quite neglected (actually, at the language level, it’s pretty much limited to the implementation of minimal evaluation)…
Is JavaScript still relevant? – JAXenter
In this article, Shusetsu Toda of Lisk explains why JavaScript is alive and well and what role it has in blockchain’s journey into the mainstream.
Java XML to String – Write XML Object to File Example – HowToDoInJava
Java examples to read XML file and print XML string to console or write XML to file. 1) Convert XML to String To convert XML object i.e org.w3c.dom.Document into string, you need following classes: javax.xml.transform.Transformer : An instance of this class can transform a source tree into a result tree, using it’s transform() method. javax.xml.transform.TransformerFactory …
Learn Kubernetes from a DevOps guru (Kubernetes + Docker)
Master Kubernetes to deploy, manage, and scale robust, performant, and reliable containerized applications with ease
How to Secure Your AWS Account [Podcast] – DZone Security
A discussion of some basic points that developers can follow to add various layers of security to their AWS account and use to create a more secure cloud.
TOP 20 JAVA INFLUENCERS OF 2018
Who are the most influential Java people in the Twittersphere? After analyzing thousands of accounts, we created a list of people that every Java enthusiast or pro should be following.
Java 8 Stream – parallel execution – different result – why?
Join Stack Overflow to learn, share knowledge, and build your career. Google Facebook Home Public 3 Let’s say i have a List
JDK9’s ForkJoinPool Upgrades
While everyone’s busy with modularity, local-variable-type-inference, and other Next Big Things of recent JDK releases, there’s a fairly small and important update for the ForkJoinPool that deserves some attention. ForkJoinPool was an experiment brought to life by JDK 7 and attracted a lot of attention at that time – it’s main selling point was the…
Java Unescape HTML to String Example – HowToDoInJava
Java examples to unescape the characters in a String. It unescapes a string containing entity escapes to a string containing the actual Unicode characters corresponding to the escapes. StringEscapeUtils.unescapeHtml4() [Apache Commons Text] This method takes escaped string as parameter. It can be null. It supports all known HTML 4.0 entities. To use StringEscapeUtils, import commons-text …
Java 8 Stream findFirst() vs. findAny() | Baeldung
The article explains the difference between Java 8 Stream findFirst and findAny method, in sequential and parallel scenario.