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

import com.example.spring.bank.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);
	}
}