孔祥富
2021-03-01 458cb4e562d6d9dbf6ff14fa86a11f06762982c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cc.mrbird.febs.tx.manager;
 
import com.codingapi.txlcn.tm.config.EnableTransactionManagerServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
/**
 * @author MrBird
 */
@SpringBootApplication
@EnableTransactionManagerServer
public class FebsTxManagerApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(FebsTxManagerApplication.class, args);
    }
 
}