packagecom.example.spring;importcom.example.spring.bank.BankApp;publicclassApp{publicstaticvoidmain(String[]args){// Actually, BankApp is the class with the main method.// It should have been executed directly instead of this class.BankApp.main(args);}}