What is Java? Is it just a programming language? Simon Ritter defines and discusses different versions of Java, such as Oracle JDK and Zulu JDK.
Category: Articles
Add some candy to your code: JSweet transpiles from Java to JavaScript – JAXenter
JSweet transpiles Java to JavaScript with over 1,000 available JavaScript libraries. See what it can do with its Maven repository.
Java Array Char And String Difference In Array
While making up some arrays I noticed that char[] javaArray = {‘j’,’a’,’v’,’a’};prints out javabut String[] javaStringArray = {“j”,”a”,”v”,”a”};only prints the stack location. I know ch…
How to apply multiple Filters on Java Stream?
I have to filter a Collection of Objects by a Map, which holds key value pairs of the Objects field names and field values. I am trying to apply all filters by stream().filter().The Objects are
Model Serving: Stream Processing vs. RPC / REST with Java, gRPC, Apache Kafka, TensorFlow
Machine Learning / Deep Learning models can be used in different ways to do predictions. My preferre…
Trilha Java Enterprise – TDC 2018 São Paulo
Não há como negar: Java Enterprise é um dos ecossistemas mais maduros, estáveis e robustos da indústria de software. Mesmo enfrentando concorrentes de altíssimo nível e passando por algumas idas e vindas, ainda mantém seu posto ao longo dos anos.Recentemente tivemos algumas grandes novidades, como o lançamento do Java EE 8 e a notícias de que a plataforma seria transferida para a Eclipse Foundation, passando a se chamar Jakarta EE. Sem falar no lançamento do Spring 5.0, trazendo ainda mais inovações. Há várias coisas bacanas nessas mudanças, e também grandes expectativas sobre o futuro, principalmente quando se fala em cloud native, containers, serverless, etc. Então, não fique de fora! Submeta a sua palestra e venha compartilhar seu conhecimento e experiência com os participantes dessa trilha!
Apache Camel URI Completion with Java DSL – RHD Blog
Apache Camel URI completion for Java DSL is now available in Visual Studio Code and Eclipse Desktop. This article shows it in action in these two IDEs.
Pluralsight Java courses
Sander is a Fellow at Luminis in The Netherlands, where he crafts modular and scalable software, most often on the JVM, but with a touch of TypeScript when needed. He also is a Java Champion and author of the O’Reilly book ‘Java 9 Modularity’ (see javamodularity.com). As an avid conference speaker, Sander loves sharing knowledge, also through his blog at http://branchandbound.net and as Pluralsight instructor.
Spring State Machine: what is it and do you need it?
State machine is a model of computation based on the finite states, as Wikipedia very obligingly say…
Refactoring to Java 8 Streams and Lambdas Online Self- Study Workshop
Improving horrible monolithic code in a fun refactoring workshop.
Spring Boot Hello World Example
In this post, we will demonstrate a Spring Boot Hello World application.1. IntroductionIf you ha…
Deferred Execution with Java’s Predicate
In the previous posts “Deferred Execution with Java’s Supplier” and “Deferred Executi…
3 Ways to Reverse an Array in Java – Coding Interview Question
One of the common coding questions is, how do you reverse an array in Java? Well, there are multiple ways to solve this problem. You can r…
Multiple simultaneous substring replacements in Java
(I come from the python world, so I apologise if some of the terminology I use jars with the norm.)I have a String with a List of start/end indices to replace. Without getting too much into detail,