Shrirang Shirodkar joins Donovan Brown to discuss what’s new in App Service for Java developers. You’ll see how Java developers can build web apps for Linux without having to deal with custom Docker c
Category: Articles
Modern Java Reloaded | Software Development Conference QCon New York
Modern, Modular, fast, and effective Java. Pushing the boundaries of JDK 9 and beyond.
Java EE 8 and the Open Future of Java EE – DZone Java
This walkthrough of Java EE 8 covers the basics of Servlet 4, JSON-B, JSON-P, SSE, the Date-Time API, and how the transition to the open Jakarta EE is going.
First Steps in Java | Udemy
Get a good grasp on the basics of Java programming language: topics ranging from basic syntax to database operations – Free Course
Binary Searching in Java Without Recursion – DZone Java
See how binary searching works on your Java arrays and consider the approaches of implementing those searches both iteratively and recursively.
Top 10 Java stories of May: Angular v6 is here! – JAXenter
The sun is shining and it’s heating up. Let’s take a look at the top Java stories of May, from the all new Angular 6 and Java 10 to microservices and more!
Jonathan Giles
Jonathan Giles is a software engineer who specialises in Java, API design, graphics, and user experience. He is a Cloud Developer Advocate at Microsoft.
How to create LocalDateTime in Java 8 – Example
The LocalDateTime is a new class introduced in Java 8 new Date and Time API. This class is in java.time package and it represents both da…
Show progress of Java 8 stream processing
A private, secure home for your team’s questions and answers. 2 I have a Stream processing a few millions of elements. The Map-Red….
Getting Started With Java EE 8, Payara 5 and Eclipse Oxygen – DZone Java
Learn how to quickly build a Java EE 8 dev environment using Eclipse Oxygen for your IDE and Payara, including how to integrate the latter two.
Jagged Arrays in Java | Baeldung
Learn how to work with jagged arrays in Java
Type system – Wikipedia
Usage overview[ edit ] An example of a simple type system is that of the C language . The portions of a C program are the function….
3 Pitfalls Everyone Should Avoid with Hybrid Multicloud (Part 2)
If you already have full control of your on premise data centers, yet can’t stop under utilizing and…
Apache NetBeans 9.0 RC1 Now Available — ADTmag
NetBeans 9.0 RC1 comprises all the modules in the Apache NetBeans Git repository, which together constitute the NetBeans Platform, along with all the modules that provide the Java SE-related features of Apache NetBeans.
Java Testing Weekly 24 / 2018
There are many software development blogs out there, but many of them don’t publish testing articles on a regular basis. Also, I have noticed that some software developers don’t read blogs written by software testers. That is a shame because I think that we can learn a lot from them. That is why I decided to create a newsletter that shares the best testing articles which I found during the last week. Let’s get started. Technical Stuff How to Create Selenium Reports with EventListeners is an interesting blog post that explains how you can create test reports or logs without writing any duplicate code. JUnit5 Programmatic Extension Registration with @RegisterExtension describes how you can register custom JUnit 5 extensions by using the @RegisterExtension annotation. Also, the author explains the difference between adding this annotation to a static field and adding this annotation to an instance field. Mockito ArgumentMatchers is a pragmatic blog post that describes how you can use Mockito’s argument matchers. This post also explains the difference between an argument matcher and an argument captor, and helps you to use the right tool for the job. Spring REST Docs – Test driven documentation of your REST API is a