AsyncConfig.java 293 B

12345678910111213
  1. package com.yihu.wlyy.statistics.config;
  2. import org.springframework.context.annotation.Configuration;
  3. import org.springframework.scheduling.annotation.EnableAsync;
  4. /**
  5. * Created by Administrator on 2016.10.18.
  6. * 启用多綫程
  7. */
  8. @Configuration
  9. @EnableAsync
  10. public class AsyncConfig {
  11. }