Java Deadlock Example and Solution Author, September 1, 2022 1. Deadlock In Java, a deadlock is a situation where minimum two threads are holding the… Continue Reading
Java Streams API Author, August 28, 2022February 11, 2024 A Stream in Java can be defined as a sequence of elements from a source. The source of… Continue Reading
Java 11 | toArray(intFunction) Author, August 20, 2022February 11, 2024 Stream toArray(IntFunction generator) example Description Stream toArray(IntFunction<A[]> generator) returns an array containing the elements of this… Continue Reading
How to fix org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement expected “identifier” (2023) Author, August 18, 2022July 24, 2023 GenerationTarget encountered exception accepting command : Error executing DDL Issue I am using H₂ in-memory… Continue Reading
GenerationTarget encountered exception accepting command : Error executing DDL via JDBC Statement (2023) Author, August 18, 2022July 24, 2023 GenerationTarget encountered exception accepting command : Error executing DDL via JDBC Statement You should try… Continue Reading
Maps Space-time complexity Author, August 16, 2022August 16, 2022 Learn more about Code Complexity Continue Reading
Custom LinkedList Implementation in Java Author, August 16, 2022 What is Linked List ? A linked list is a linear data structure containing interconnected… Continue Reading
Algorithm Code Complexity Author, August 14, 2022August 16, 2022 Code Complexity compute it by using the control flow graph of the program. Cyclomatic complexity… Continue Reading
IS-A relationship in java Author, August 13, 2022 Is a relationship is also known as inheritance. We can implement ‘is a’ relationship or… Continue Reading