Interview Ready with Spring Boot: Real-Life Scenarios You Must Know (Part 1)

As a Spring Boot developer, you'll often encounter challenging scenarios that require thoughtful implementation. This post covers five common real-world situations with practical solutions and code examples. Scenario 1: You…

Continue ReadingInterview Ready with Spring Boot: Real-Life Scenarios You Must Know (Part 1)

Convert HTML input type datetime-local to Timestamp in Java

In this post, I'm going to show you how to convert HTML input type datetime-local to a timestamp in java. import java.sql.Timestamp; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; //--------------------------------------- String valueFromHtml =…

Continue ReadingConvert HTML input type datetime-local to Timestamp in Java