summaryrefslogtreecommitdiff
path: root/spring-framework/21-aop-xml-args/src/main/java/com/example/spring/App.java
blob: 13a782cd50b043423d5840fc3d8f10bc7e672217 (plain)
1
2
3
4
5
6
7
8
9
10
11
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);
	}
}