SAsyncConfig.kt 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * ********************************************************************************************************************
  3. *
  4. * iFHS7.
  5. * ;BBMBMBMc rZMBMBR BMB
  6. * MBEr:;PBM, 7MBMMEOBB: BBB RBW
  7. * XK: BO SB. :SZ MBM. c;; ir BBM :FFr :SSF: ;xBMB:r iuGXv. i:. iF2;
  8. * DBBM0r. :D S7 ;XMBMB GMBMu. MBM: BMB MBMBBBMBMS WMBMBMBBK MBMBMBM BMBRBMBW .MBMBMBMBB
  9. * :JMRMMD .. , 1MMRM1; ;MBMBBR: MBM ;MB: BMB: MBM. RMBr sBMH BM0 UMB, BMB. KMBv
  10. * ;. XOW B1; :uM: 1RE, i .2BMBs rMB. MBO MBO JMB; MBB MBM BBS 7MBMBOBM: MBW :BMc
  11. * OBRJ.SEE MRDOWOR, 3DE:7OBM . ;BMB RMR7BM BMB MBB. BMB ,BMR .BBZ MMB rMB, BMM rMB7
  12. * :FBRO0D0 RKXSXPR. JOKOOMPi BMBSSWBMB; BMBB: MBMB0ZMBMS .BMBOXRBMB MBMDE RBM2;SMBM; MBB xBM2
  13. * iZGE O0SHSPO. uGZ7. sBMBMBDL :BMO OZu:BMBK, rRBMB0; ,EBMB xBMBr:ER. RDU :OO;
  14. * ,BZ, 1D0 RPSFHXR. xWZ .SMr . .BBB
  15. * :0BMRDG RESSSKR. 2WOMBW; BMBMR
  16. * i0BM: SWKHKGO MBDv
  17. * .UB OOGDM. MK, Copyright (c) 2015-2019. 斯伯坦机器人
  18. * , XMW ..
  19. * r All rights reserved.
  20. *
  21. * ********************************************************************************************************************
  22. */
  23. package com.sybotan.service.config
  24. import org.springframework.beans.factory.annotation.Value
  25. import org.springframework.context.annotation.Bean
  26. import org.springframework.context.annotation.Configuration
  27. import org.springframework.context.annotation.PropertySource
  28. import org.springframework.scheduling.annotation.EnableAsync
  29. import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor
  30. import java.util.concurrent.Executor
  31. /**
  32. * 异步线程池配置文件
  33. *
  34. * @author 庞利祥 <sybotan@126.com>
  35. */
  36. @Configuration //表明该类是一个配置类
  37. @EnableAsync //开启异步事件的支持
  38. @PropertySource(value = ["classpath:application.properties"], ignoreResourceNotFound = true)
  39. open class SAsyncConfig {
  40. /** 线程池维护线程的最少数量 */
  41. // @Value("${corePoolSize}")
  42. private var corePoolSize = 10
  43. /** 线程池维护线程的最大数量 */
  44. // @Value("${maxPoolSize}")
  45. private var maxPoolSize = 50
  46. /** 缓存队列 */
  47. // @Value("${queueCapacity}")
  48. private var queueCapacity = 10
  49. /**
  50. * 任务执行器
  51. */
  52. @Bean
  53. open fun taskExecutor(): Executor {
  54. val executor = ThreadPoolTaskExecutor()
  55. executor.corePoolSize = corePoolSize
  56. executor.maxPoolSize = maxPoolSize
  57. executor.setQueueCapacity(queueCapacity)
  58. executor.initialize();
  59. return executor
  60. } // Function
  61. } // Class SAsyncConfig