summaryrefslogtreecommitdiff
path: root/spring-framework/07-user-jdbc-ds-transaction/src/main/java/com/example/spring/App.java
blob: 2fd9e8656c46aa2ac6bc5e7d68d7c449ce5aee62 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.example.spring;

import com.example.fp.FinancialPlannerApp;

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.
		FinancialPlannerApp.main(args);
	}
}