xx
孔祥富
2021-03-12 fab1d50fca1bcc38dd37fd7159d5235ddf9593fe
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);
    }
 
}