diff options
Diffstat (limited to 'spring-framework/23-aop-aspectj-annotations/src/main/java/com/example/spring/App.java')
| -rw-r--r-- | spring-framework/23-aop-aspectj-annotations/src/main/java/com/example/spring/App.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spring-framework/23-aop-aspectj-annotations/src/main/java/com/example/spring/App.java b/spring-framework/23-aop-aspectj-annotations/src/main/java/com/example/spring/App.java new file mode 100644 index 0000000..13a782c --- /dev/null +++ b/spring-framework/23-aop-aspectj-annotations/src/main/java/com/example/spring/App.java @@ -0,0 +1,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); + } +} |
