I\'m learning Spring and I\'m having some problems trying to set up a relatively basic Spring project. I\'m creating an application to simply read from a database, but I\'m havi
Problem is with below line
GetCustomerEvent ev = new GetCustomerEvent();
You manually created instance using "new". Spring does not have idea about this object. See Why is my Spring @Autowired field null? for details.