Injection of generics is a powerful feature, making code cleaner and much more understandable. In this article we cover autowiring these generics in Spring.
Baeldung Editor
Paul Jervis
Here's what I've reviewed (so far):
Baeldung on Java
- All
- Jakarta EE (5)
- Java (4)
- DevOps (4)
- Spring Boot (3)
- Spring (2)
- Java IO (2)
- Cloud (2)
- Testing (1)
- Spring Data (1)
- Reactive (1)
- NoSQL (1)
- Java List (1)
- Java Array (1)
- JPA (1)
- IDE (1)
- Core Java (1)
Java List Initialization in One Line
Filed under Java List
In this quick tutorial, we’ll investigate how can we initialize a List using one-liners.
Static and Dynamic Binding in Java
Filed under Core Java
An exploration of how Java handles binding method names for lookup at runtime.
Auto-import Classes in IntelliJ
Filed under IDE
A brief article describing the different options of IntelliJ IDEA’s ‘auto-import’ feature.
A Guide to Message Driven Beans in EJB
Filed under Jakarta EE
In this article, we’ll discuss Message Driven Beans (MDB), responsible for handling message processing in an asynchronous context.
RxJava One Observable, Multiple Subscribers
In this article, we cover how to properly attach multiple subscribers to a single observable.
Spring Boot Integration Testing with Embedded MongoDB
Filed under NoSQL, Spring Boot, Spring Data, Testing
Learn how to use Flapdoodle’s embedded MongoDB solution together with Spring Boot to run MongoDB integration tests smoothly.
Quick Use of FilenameFilter
Filed under Java IO
Learn about FilenameFilter, a functional interface for filtering on a list of files by name.
An Introduction to CDI (Contexts and Dependency Injection) in Java
Filed under Jakarta EE
Have a a look at CDI’s most relevant features and implement different approaches for injecting dependencies in client classes.
Baeldung on Kotlin
- All
- Testing (1)
- Patterns (1)
- Libraries (1)
- Kotlin Classes and Objects (1)
Creational Design Patterns in Kotlin: Builder
Filed under Patterns
In this quick article, we’ll see how to implement the Builder Design Pattern in Kotlin.
Reflection with Kotlin
Filed under Kotlin Classes and Objects
Have a look at the extra language support provided by Kotlin for performing Reflection.
Writing Specifications with Kotlin and Spek
An introduction to Spek framework – a Specification Testing framework for Java and Kotlin