(Paul Krill) The Apache Software Foundation has released a beta of its NetBeans Version 9.0 IDE, with support for the Java Module System introduced with Java 9 last year. Modules comprised the premier capability in JDK 9, which was released in September 2017.
Tag: JSON / JAVA / XML
Learn Angular in 10 days – Day 4 – Part 1
(Marla Sukesh) I have seen people getting scared because of long and big articles, hence I have decided to write multiple small articles for each day instead of writing one big article. In each article, we will cover 1 or 2 or max 3 labs.
How to Implement Your Own XJC Plugin to Generate toString(), equals(), and hashCode() Methods
(lukaseder) When you work with JAXB to generate Java code from XSD (or *ghasp* WSDL) files, you’re going to use the XJC tool, which is shipped with the JDK (at least until JDK 9 – with Jigsaw, it will soon be externalised into its own external dependency).
Learn Angular 4.0 In 10 Days – Directives – Day Four
(Debasis Saha) Let us start the Day 4 of Learning Angular 4.0 in 10 Days. In the previous articles, we already discussed Data Binding Concept in Angular 4.0. If you want to read the previous articles of this series, do visit the below link.
JDK 9: NotNullOrElse Methods Added to Objects Class
(Dustin Marx) JDK 9 added some new methods to the Objects class including two static methods highlighted in this post: requireNonNullElse(T,T) and requireNonNullElseGet(T obj,Supplier
Handling JSON Errors in OWIN Web Application
(Ivan Yakimov) In this short article, I’ll describe how to configure JSON serializer error handling differently for each request.
Prometheus With Java EE and MicroProfile Metrics [Video]
(Sebastian Daschner) See how you can combine Prometheus, Java EE, MicroProfile Metrics, and OpenLiberty to give you a better handle on your business metrics.
Exploring Angular Fundamental With Visual Studio 2017
(Banketeshvar Narayan) This article explains the fundamentals of Angular by creating a simple Angular application with Visual Studio 2017 using the default template available with .NET Core.
Implementing IXmlSerializable in readonly structs
(Jon Skeet) There are three things you need to know to start with:
Transferring InputStream to OutputStream in JDK 9
(Dustin Marx) One of the minor additions to JDK 9 that can make a sometimes routine task in Java even easier is the addition of the method InputStream.transferTo(OutputStream).