排序
Simple Collection Manipulation in Java Using Lambdas
Simple Collection Manipulation in Java Using Lambdas,One of the most powerful features introduced in Java 8 was Lambda Even though at first it may not seem much, the new functional...
Java lambda expression tutorial: Functional programming in Java
Java lambda expression tutorial: Functional programming in Java,With over 60% of professional developers still using Java 8 in the beginning of 2021, understanding the features of ...
Lambda Expressions In Simple Terms
Lambda Expressions In Simple Terms,A lambda expression is a short block of code which takes in parameters and returns a value. The sample expression below has one parameter. The ex...
How to handle checked exception in the lambda expression
How to handle checked exception in the lambda expression,Lambda expression is all how we write code. It’s about how concise, smaller, and less boilerplate code we can write. Howev...
What is Lambda Layers and how to use it with Java runtime?
What is Lambda Layers and how to use it with Java runtime?,When developing serverless functions, you often need additional dependencies or libraries for the function to work. For L...
Check if an item is contained in a stream
Check if an item is contained in a stream,I recently tried to filter trough a stream to check if a specific item was present. My first approach was the following: return customers ...
Creating an AWS Lambda Function in Java
Creating an AWS Lambda Function in Java,To create an AWS Lambda function in Java, first, we need to create a Handler class that implements the RequestHandler interface from the lam...
How to create dynamic content using AWS Lambda?
How to create dynamic content using AWS Lambda?,Hello Everyone! Today we are going to see how you can generate dynamic content in Lamdba. We are going to use Java 8, Apache Maven, ...
Effective Java! Favor the Use of Standard Functional Interfaces
Effective Java! Favor the Use of Standard Functional Interfaces, Effective Java Review (90 Part Series) 1 Effective Java Tuesday! Let's Consider Static Factory Methods 2 Effective ...
REST API using AWS Java SDK
REST API using AWS Java SDK,In the previous post, we looked at a simple Lambda handler using the AWS Java SDK. In this post, we're going to implement Rest API with Lambda (using La...
Effective Java! Prefer Method References to Lambdas
Effective Java! Prefer Method References to Lambdas, Effective Java Review (90 Part Series) 1 Effective Java Tuesday! Let's Consider Static Factory Methods 2 Effective Java Tuesday...
Lambda Expression
Lambda Expression, Hello Java Programmers Java 1.8 SE brings to us many new features, But among these features, one shouts more than any other feature is... guess What?? Yeah, you ...