28 lines
743 B
Java
28 lines
743 B
Java
![]() |
package co.yixiang;
|
||
|
|
||
|
import co.yixiang.utils.SpringContextHolder;
|
||
|
import org.springframework.boot.SpringApplication;
|
||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
import org.springframework.context.annotation.Bean;
|
||
|
import org.springframework.scheduling.annotation.EnableAsync;
|
||
|
import org.springframework.transaction.annotation.EnableTransactionManagement;
|
||
|
|
||
|
/**
|
||
|
* @author Zheng Jie
|
||
|
* @date 2018/11/15 9:20:19
|
||
|
*/
|
||
|
@EnableAsync
|
||
|
@SpringBootApplication
|
||
|
@EnableTransactionManagement
|
||
|
public class AppRun {
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(AppRun.class, args);
|
||
|
}
|
||
|
|
||
|
@Bean
|
||
|
public SpringContextHolder springContextHolder() {
|
||
|
return new SpringContextHolder();
|
||
|
}
|
||
|
}
|