JAVA
Dependency Injection in Spring without XML
Overview In previous blog, we saw Dependency Injection in Spring using Annotation. Here we will see how we can do the same using Annotation but without defining Autoscan in XML. We will make use of @Configuration and @Bean to define configuration the same as we did for XML in above Read more…