π Remove Leading and Trailing Characters from a String
https://www.baeldung.com/java-remove-trailing-characters
https://www.baeldung.com/java-remove-trailing-characters
Baeldung
Remove Leading and Trailing Characters from a String | Baeldung
Explore several ways to remove leading and trailing characters from a String.
π The Difference Between mockito-core and mockito-all
https://www.baeldung.com/mockito-core-vs-mockito-all
https://www.baeldung.com/mockito-core-vs-mockito-all
Baeldung
The Difference Between mockito-core and mockito-all | Baeldung
Explore the difference between mockito-core and mockito-all.
π How to Determine if a Binary Tree is Balanced
https://www.baeldung.com/java-balanced-binary-tree
https://www.baeldung.com/java-balanced-binary-tree
Baeldung
How to Determine if a Binary Tree is Balanced in Java | Baeldung
Learn how to determine if a binary tree is balanced in Java.
π Liskov Substitution Principle in Java
https://www.baeldung.com/java-liskov-substitution-principle
https://www.baeldung.com/java-liskov-substitution-principle
Baeldung
Liskov Substitution Principle in Java | Baeldung
The L in SOLID, the Liskov Substitution Principle helps structure object oriented design. We also explore how it supports the Open/Closed Principle.
π Checking If a Method is Static Using Reflection in Java
https://www.baeldung.com/java-check-method-is-static
https://www.baeldung.com/java-check-method-is-static
Baeldung
Checking If a Method is Static Using Reflection in Java | Baeldung
Learn how we can check if a method is static or not.
π Determine If All Elements Are the Same in a Java List
https://www.baeldung.com/java-list-all-equal
https://www.baeldung.com/java-list-all-equal
Baeldung
Determine If All Elements Are the Same in a Java List | Baeldung
Learn different ways to determine if all elements in a list are equal
π Does a Methodβs Signature Include the Return Type in Java?
https://www.baeldung.com/java-method-signature-return-type
https://www.baeldung.com/java-method-signature-return-type
Baeldung on Kotlin
Does a Method's Signature Include the Return Type in Java? | Baeldung
Learn why method signatures are comprised of the name and the parameter types' list in Java.
π Convert Date to LocalDate or LocalDateTime and Back
https://www.baeldung.com/java-date-to-localdate-and-localdatetime
https://www.baeldung.com/java-date-to-localdate-and-localdatetime
Baeldung on Kotlin
Convert Date to LocalDate or LocalDateTime and Back | Baeldung
Learn about possible ways of converting the between old java.util.Date classes and new java.time API.
π Development in an Isolated Environment β How to Manage Dependencies?
//www.javacodegeeks.com/2020/09/development-in-an-isolated-environment-how-to-manage-dependencies.html
//www.javacodegeeks.com/2020/09/development-in-an-isolated-environment-how-to-manage-dependencies.html
Java Code Geeks
Development in an Isolated Environment - How to Manage Dependencies? | Java Code Geeks - 2021
How to build an actual stack of frameworks and libraries for a comfortable development process if youβre working remotely in a distant village, flying for
π Testing with Hoverfly and Java Part 3: State
//www.javacodegeeks.com/2020/09/testing-with-hoverfly-and-java-part-3-state.html
//www.javacodegeeks.com/2020/09/testing-with-hoverfly-and-java-part-3-state.html
Java Code Geeks
Testing with Hoverfly and Java Part 3: State | Java Code Geeks - 2020
Previously we simulated a delay scenario using Hoverfly. Now itβs time to dive deeper and go for a state-based testing. By doing a stateful simulation we
π Reduce Repetitive Code in Spring MVC Controllers
//www.javacodegeeks.com/2020/09/reduce-repetitive-code-in-spring-mvc-controllers.html
//www.javacodegeeks.com/2020/09/reduce-repetitive-code-in-spring-mvc-controllers.html
Java Code Geeks
Reduce Repetitive Code in Spring MVC Controllers - Java Code Geeks - 2021
After spending some time doing sustained engineering (a.k.a. maintaining legacy code), I ventured to reduce repetitive code in Spring MVC @Controllers. I
π Asynchronous HTTP Programming with Play Framework
https://www.baeldung.com/java-play-asynchronous-http-programming
https://www.baeldung.com/java-play-asynchronous-http-programming
Baeldung
Asynchronous HTTP Programming with Play Framework | Baeldung
The Play Framework provides an asynchronous HTTP client to make calls to web services in the background while doing other work. We explore how to use it.