(Simon Ritter) See how you can make the most of the JPMS as we walk through using jlink, jdeps, and other features introduced in Java 9.
Tag: JSON / JAVA / XML
Get Ready for Cloud Native, Service-meshed Java Enterprise
(Sebastian Daschner) Java EE, cloud native and service meshes — this doesn’t really sound like a good fit. Or does it? Is it possible to develop modern, cloud native Java Enterprise applications that fulfill concerns such as scalability, monitoring, tracing, or routing — with
Java 8 Date and Time
(Steven Genters) Nowadays, several applications still use the java.util.Date and java.util.Calendar API’s, including libraries to make our lives easier working with these types, for example JodaTime.
A Completely Overhauled, Modularised jOOQ 3.11, Ready for Java 11
(lukaseder) If you’ve been following the fast paced JDK 9+ projects, you may have noticed an exciting, first big change that has been made possible thanks to Java 9’s Jigsaw feature. In JDK 11, JEP 320 will ship, or rather: it will no longer ship, as JEP 320 means that both CORBA and Java EE modules
Basics Of Angular And Its Versions – Part Three
(Santosh Kumar Adidawarpu) Before reading this article, first of all, please have a look at my previous articles (Part one and Part two) for better understanding.
Beyond Java: Programming languages on the JVM
(Serdar Yegulalp) If there is any language that is a known and proven quantity for developers, it’s Java. Enterprise developers, web developers, mobile developers, and plenty of others besides, have made Java ubiquitous and contributed to the massive culture of support around Java.
Introduction to JSON Schema
(Florian Rappl) JSON Schema may be the answer to most problems in dealing with JSON files. We explore JSON Schema from a practical point of view.
Getting started with JSON Decoding in Elm
(Jack Franklin) Something that continually trips beginners up in Elm is dealing with JSON responses from a third party API. I think this is because it’s a completely new concept to those picking up Elm from JavaScript. It certainly took me a long time to get comfortable with Elm.
Basics Of Kotlin – JVM Implementation
(Mushtaq M A) Hello guys. We already know that Google announced that Kotlin is a new first class language for Android Development. Kotlin is now an official language on Android. It’s expressive, concise, and powerful. Best of all, it’s interoperable with our existing Android languages and runtime.
How to Compile a Class at Runtime with Java 8 and 9
(lukaseder) In some cases, it’s really useful to be able to compile a class at runtime using the java.compiler module. You can e.g. load a Java source file from the database, compile it on the fly, and execute its code as if it were part of your application.