package com.example.spring; import com.example.spring.aop.BankApp; public class App { public static void main(String[] args) { // Actually, BankApp is the class with the main method. // It should have been executed directly instead of this class. BankApp.main(args); } }