Discover how Java is bringing the latest developments and projects which will help you advance your development with with the language and make your applications leaner and faster.
Category: Home
CloudWatch Event Notifications Using AWS Lambda
A primary use case for CloudWatchEvents is to keep track of changes across an AWS infrastructure. It…
Jakarta EE: The new home for enterprise Java – JAXenter
Java EE is on the move. Today, Ian Robinson explains why it made the switch to the Eclipse Foundation and where it is going as Jakarta EE.
Java 8 stream Map> sum of values for each key
I am not so familiar with Java 8 (still learning) and looking to see if I could find something equivalent of the below code using streams.The below code mainly tries to get corresponding double v…
Java String to XML – Parse String to XML DOM Example – HowToDoInJava
In Java, XML is represented with org.w3c.dom.Document object. In this XML tutorial, we will learn to – Convert XML string to XML Document Convert XML file content to XML Document 1) Convert String to XML Document To convert XML string to XML Dom, we need following classes: javax.xml.parsers.DocumentBuilder : Defines the API to obtain XML …
How to Manage Dynamism in Java – DZone Java
This tutorial looks at dynamism in Java and how to go about using static typing in different Java use cases, including legacy code and application development.
Java Read XML with StAX Parser – Cursor & Iterator API Examples
Learn to parse and read XML file using Java StAX parser. StAX (Streaming API for XML) provides two ways to parse XML i.e. cursor based API and iterator based API. 1) StAX Parser Just like SAX parser, StAX API is designed for parsing XML streams. The difference is: StAX is a “pull” API. SAX is …
Optional.isEmpty() Available in JDK 11 EA Builds
My recently posted question “Optional.isEmpty() Coming to Java?” was prompted by a core-li…
Payara Server Rolling Upgrades
To achieve continuous deployment applications must be deployed early and often. This, in turn, triggers downtime. Rolling upgrades solve this problem in an efficient way!
How to Invoke an External REST API from a Cloud Function
In a previous blog post I showed how to create your first cloud function (plus a video). It’s very l…
Java Convert XML to Properties – Read Properties from XML File – HowToDoInJava
Java example to create .properties file from XML file. This code can be used to read properties key-values from XML file, to be used in the application code. Properties to XML Example To convert XML file into properties file, best way is to use java.util.Properties class. Process is : Load XML file into java.util.Properties class …
Vaadin Flow – a marvelous deer
As you probably know, Vaadin is one of the most popular web frameworks on Java:https://zerotur…
Creating your first servlet
In this tutorial, we will learn how to create very basic web application with Servlet.Servlet is…
How to Convert List to Map in Java | Baeldung
Learn about different ways of converting a List to a Map in Java, using core functionalities and some popular libraries
[FREE EBOOK] Lessons from analyzing over 600,000 Java projects
What does it take to build an informed error handling workflow?Investigating and resolving a…