Learn how to leverage @DynamicPropertySource to manage testing with external applications.
Baeldung Author
Mona Mohamadinia
Motivated Software Engineer with excellent technical, leadership and planning abilities focused on delivering high-quality, scalable and well-tested softwares. Train and encourage team members to improve and to contribute more effectively.
Here's what I've written (so far):
Baeldung on Java
- All
- Maven (6)
- Java (6)
- Spring Boot (3)
- Spring (3)
- JVM (2)
- Cloud (2)
- Persistence (1)
- Logging (1)
- Java Concurrency (1)
- Java Collections (1)
- Docker (1)
Listing Kafka Consumers
Filed under Cloud
learn how to list Kafka consumer groups and find more information.
Listing Kafka Topics
Filed under Cloud
Learn how to list all kafka topics using the command line.
Health Indicators in Spring Boot
Filed under Spring Boot
Learn all about Health Indicators in Spring Boot.
Check If a File or Directory Exists in Java
Filed under Java
Learn how to check if a file or directory exists in Java
The Difference Between Cron Syntax in Linux and Spring
Filed under Spring
Learn the difference between Cron Syntax in Linux and Spring
Command-Line Tools to Find the Java Heap Size
Filed under JVM
Learn how to use command line tools to find the heap size of a running Java application.
Check If a Directory Is Empty in Java
Filed under Java
Learn how to check whether or not a directory is empty in Java.
Maven Offline Mode
Filed under Maven
Learn how to get Maven ready for offline mode.
Download Sources and Javadocs with Maven
Filed under Maven
Learn how to download the sources and Javadocs with Maven
Listing Docker Containers
Filed under Docker
Learn how to list docker containers using the command line
Maven Logging Options
Filed under Maven
Learn how to configure logging options with Maven.
Run a Java Main Method in Maven
Learn how to run Java main method using Maven.
Run mvn Command From Another Directory
Filed under Maven
Learn how to run mvn commands from another directory.
Refer to Environment Variables in pom.xml
Filed under Maven
Learn how to reference environment variables in a pom.xml file
When Does Java Throw UndeclaredThrowableException?
Learn what causes Java to throw an UndeclaredThrowableException
Why Not to Start a Thread in the Constructor?
Filed under Java Concurrency
Learn why you shouldn’t start a thread in a Java constructor
Liveness and Readiness Probes in Spring Boot
Filed under Spring Boot
Learn how to integrate Spring with Kubernetes probes
Returning the Generated Keys in JDBC
Filed under Persistence
Learn how to return auto-generated keys with only the JDBC
The Constructor Return Type in Java
Filed under Java
Learn about the constructor return type in Java
Log Groups in Spring Boot 2.1
Filed under Logging, Spring Boot
Learn how to group loggers with Spring Boot 2.1
Should We Close a Java Stream?
Filed under Java
Ever wondered if it’s important to close a Java 8 Stream?
Java ArrayList vs LinkedList
Filed under Java Collections
Learn the difference between ArrayList and LinkedList in Java
Adding Shutdown Hooks for JVM Applications
Filed under JVM
Learn to add shutdown hooks for JVM applications.
Baeldung on Kotlin
- All
- Kotlin Basics (4)
- Kotlin-Java Interop (1)
- Kotlin Strings (1)
- Kotlin Numbers (1)
- Kotlin Functions (1)
- Kotlin Dates (1)
- Kotlin Concurrency (1)
- Kotlin Collections (1)
- Kotlin Classes and Objects (1)
String to Long Conversions in Kotlin
Filed under Kotlin Strings
Learn how to convert between Strings and Longs in Kotlin
Return at Label in Kotlin
Filed under Kotlin Basics
Learn how to use Kotlin’s return@ label.
Backing Fields in Kotlin
Filed under Kotlin Basics
Learn the concept of backing fields in Kotlin.
Unsigned Integers in Kotlin
Filed under Kotlin Numbers
Learn how to use unsigned integers in Kotlin.
Measuring Elapsed Time in Kotlin
Filed under Kotlin Dates
Discover how to measure elapsed time in Kotlin.
SAM Conversions in Kotlin
Filed under Kotlin-Java Interop
Learn about SAM conversions in Kotlin.
Volatile Properties in Kotlin
Filed under Kotlin Concurrency
Learn how to control the memory visibility of variables using volatile properties in Kotlin
Anonymous Inner Classes in Kotlin
Filed under Kotlin Classes and Objects
Learn how to leverage anonymous inner classes in Kotlin.
Iterating Collections by Index in Kotlin
Filed under Kotlin Collections
Learn how to iterate through collections by index in Kotlin
Not-Null Assertion (!!) Operator in Kotlin
Filed under Kotlin Basics
Learn how to use the not-null assertion operator in Kotlin
Reified Functions in Kotlin
Filed under Kotlin Functions
Learn how to use reified functions in Kotlin
Checking Whether a lateinit var Is Initialized in Kotlin
Filed under Kotlin Basics
Learn how to check whether if a lateinit variable has been initialized in Kotlin