From 4afcff940551079617e8f4116e52bb0ef9df7fcc Mon Sep 17 00:00:00 2001 From: Kamal Wickramanayake Date: Sat, 25 Apr 2026 21:53:33 +0530 Subject: Added Spring Framework sample code --- .../src/main/java/com/example/spring/App.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 spring-framework/24-aop-aspectj-annotations2/src/main/java/com/example/spring/App.java (limited to 'spring-framework/24-aop-aspectj-annotations2/src/main/java/com/example/spring/App.java') diff --git a/spring-framework/24-aop-aspectj-annotations2/src/main/java/com/example/spring/App.java b/spring-framework/24-aop-aspectj-annotations2/src/main/java/com/example/spring/App.java new file mode 100644 index 0000000..13a782c --- /dev/null +++ b/spring-framework/24-aop-aspectj-annotations2/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); + } +} -- cgit v1.2.3