Convert Date to LocalDate or LocalDateTime and Back 1. Overview Starting with Java 8, we have a new Date API – java.time. However, sometimes we still need to perform conversions between the new and the old APIs, and work with date representations from both. Further reading: Migrating to the New… Continue Reading java-date-to-localdate-and-localdatetime

Spring NoSuchBeanDefinitionException 1. Overview In this article, we are discussing the Spring org.springframework.beans.factory.NoSuchBeanDefinitionException – this is a common exception thrown by the BeanFactory when trying to resolve a bean that simply isn’t defined in the Spring Context. We’ll illustrate the possible causes for this problem and the available solutions. And… Continue Reading spring-nosuchbeandefinitionexception