@author Exrickx
| 10 | * @author Exrickx |
| 11 | */ |
| 12 | @SpringBootApplication |
| 13 | //启用缓存 |
| 14 | @EnableCaching |
| 15 | //启用异步 |
| 16 | @EnableAsync |
| 17 | //定时任务 |
| 18 | @EnableScheduling |
| 19 | public class XpayApplication { |
| 20 | |
| 21 | public static void main(String[] args) { |
| 22 | SpringApplication.run(XpayApplication.class, args); |
| 23 | } |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected