Time.java 593 B

1234567891011121314151617181920212223242526
  1. package com.malk.taisen.Timers;
  2. import com.malk.taisen.service.NonPoServer;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.context.annotation.Configuration;
  6. import org.springframework.scheduling.annotation.EnableScheduling;
  7. @Slf4j
  8. @Configuration
  9. @EnableScheduling
  10. public class Time {
  11. @Autowired
  12. private NonPoServer nonPoServer;
  13. // @Scheduled(fixedRate = 500)
  14. // public void JX() throws Exception {
  15. // nonPoServer.NonPoinsetSAP0005("","045e8b98-3e82-4569-b5ea-c22def5170bd");
  16. //
  17. // }
  18. }