In CustomerServiceImpl.java, we hardcoded 'HibernateCustomerRepositoryImpl' package com.pluralsight.service; ... public class CustomerServiceImpl implements CustomerService { private CustomerRepository customerRepository = new HibernateCustomerReposi…
Previous we see how to do Setter injection: https://www.cnblogs.com/Answer1215/p/9472117.html Now let's see how to cover setter injection to coustructor injection. Notice, don't need to compare which one is better, you can use both. Different from se…
There is no applicationContext.xml file. Too much XML Namespaces helped Enter Java Configuration Create main/java/com.pluralsight/AppConfig.java: 1. Setter Injection: package com.pluralsight; import com.pluralsight.repository.CustomerRepository; impo…