You are here:Home-Matt Speake

About Matt Speake

Matt Speake is Principal Trainer at JavaEasily and specialises in teaching all things related to Java technology. He is a published instructor on Udemy, Skillshare, StackSkills, Packt and O'Reilly as well as on the JavaEasily platform itself. His outside interests include music (playing piano and guitar), languages (in particular Dutch and French) and helping as many people as possible to pick up new skills. He lives in the UK with his beautiful and amazing wife and daughter and their ever-increasing line up of fun family pets.

How Maven Resolves Dependencies

This video shows how Maven performs its dependency resolution and gives a demo of how dependencies are resolved, showing you actually what Maven is doing as it resolves a dependency it doesn't have in its local cache.

By |2023-07-21T17:44:35+00:00July 26th, 2020|Categories: Videos, YouTube|Tags: , , , , |Comments Off on How Maven Resolves Dependencies

Introducing lambda expressions for functional programming in Java

Introducing lambda expressions for functional programming in Java In this article we'll take a look at lambda expressions - the powerhouse behind Java's functional programming! Format of Lambda Expressions The syntax of lambda expressions is very intuitive, easy to understand and apply. A lambda expression is made up of: input parameters arrow operator expression/statements block

By |2023-07-26T12:12:39+00:00July 13th, 2020|Categories: Articles, Tutorials|Tags: , , , |Comments Off on Introducing lambda expressions for functional programming in Java

Creating Mocks and Setting up Mockito Unit Tests

Creating Mocks and Setting up Mockito Unit Tests Overview You can create mocks either by using the API or by annotation You set up Mockito based unit tests by either using the Mcokito JUnit runner, including a JUnit 4 rule or by the API Creating Mocks Creating mocks programmatically You can create mocks programmatically by

By |2023-07-26T12:12:14+00:00July 13th, 2020|Categories: Articles, Tutorials|Tags: , , , , |Comments Off on Creating Mocks and Setting up Mockito Unit Tests