As Java EE moves into the Eclipse Foundation, it’s important to keep an eye on various milestones along the way. Today, Arjan Tijms of Payara explains how the transfer is going and explores some of the proposals for future EE releases.
Category: Articles
It’s Here! NEW Oracle Certified Professional, Java SE 11 Developer Certification!
Having an up-to-date Java certification shows employers (andpeers) you have the latest skills and knowledge of thetechnology. Become Certified as Java SE 11…
Sylvain Saurel’s answer to Do you know any good books which will help beginners to learn Java? – Quora
Sign In Answered 2d ago · Author has 165 answers and 84.8k answer views Books to learn Java are numerous and it is therefore very ….
Master Automation Testing with Java and Selenium Webdriver
Learn to Write Great Automation Tests with Selenium Webdriver and Java. Start Building Automation Testing Frameworks!
Java 8 stream – multiple filters example – HowToDoInJava
Learn to filter a stream of objects using multiple filters and process filtered objects by either collecting to a new list or calling method on objects.
Introduction to JAVA (Basics) | Udemy
A basic approach to JAVA – Free Course
Java Testing Weekly 13 / 2019
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 Integration Testing with Spring: Consumers is a practical blog post that helps you to write simple tests for a Spring MVC controller that invokes a remote HTTP API. Temporary directories in JUnit 5 Tests is a practical blog post that describes how you can write tests which use temporary directories. Write Dockerized End-to-End Tests With JUnit 5 and Selenium WebDriver is my guest post that is published on the TestProject blog, and it describes how can you write end-to-end tests which use a dockerized web browser. The Really Valuable Stuff Four Reasons You Should Test Input Validation is an important blog post which argues that you should always test your input validation rules even though this is a very boring task. By the
Red Hat eyes cloud-native Java future with Quarkus
Red Hat’s Quarkus project seeks to help developers build cloud-native Java applications for modern computing environments, such as containers, Kubernetes, microservices, reactive programming and function as a service.
How to Deploy Your Java App to the Cloud | Vaadin
So you are done testing your Java application and are satisfied with the results on your local computer. Or maybe you are still evaluating if Java is for you in terms of hosting feasibility.
watch and deploy (WAD)
Watch and Deploy – deploying ThinWARs without IDE plugins
Eclipse IDE Keeps Pace with Faster Java Releases — ADTmag
Last week’s Java 12 release wasn’t the only byproduct of Oracle’s faster release cadence. The Eclipse Foundation also announced the third quarterly release of the Eclipse IDE, along with 75 participating projects.
Java in the 21st century: Are you thinking far enough ahead? – JAXenter
In this session, Steve Poole explains that whether it’s driven by AI or quantum computers the problems of tomorrow demand new approaches and new thinking.
Guide to Stream.reduce() | Baeldung
Learn the key concepts of the Stream.reduce() operation in Java and how to use it to process sequential and parallel streams.
Graph Search, Shortest Paths, and Data Structures | Coursera
Graph Search, Shortest Paths, and Data Structures from Stanford University. The primary topics in this part of the specialization are: data structures (heaps, balanced search trees, hash tables, bloom filters), graph primitives (applications of …
Java 8 – Convert stream to array – Stream.toArray() – HowToDoInJava
Learn to convert stream to array using Stream.toArray() API. This post contains multiple examples for collecting stream elements to array.