EvalApplication.java 775 B

1234567891011121314151617181920212223242526272829
  1. package com.ims.eval;
  2. import org.springblade.core.launch.BladeApplication;
  3. import org.springframework.cache.annotation.EnableCaching;
  4. import org.springframework.cloud.client.SpringCloudApplication;
  5. import org.springframework.cloud.openfeign.EnableFeignClients;
  6. import org.springframework.context.annotation.ComponentScan;
  7. import org.springframework.context.annotation.ComponentScans;
  8. import org.springframework.scheduling.annotation.EnableScheduling;
  9. /**
  10. * eval启动器
  11. *
  12. * @author wang
  13. */
  14. @SpringCloudApplication
  15. @ComponentScans({
  16. @ComponentScan("com.ims.ext.act")
  17. })
  18. @EnableFeignClients
  19. @EnableCaching
  20. @EnableScheduling
  21. public class EvalApplication {
  22. public static void main(String[] args) {
  23. BladeApplication.run("ims-eval", EvalApplication.class, args);
  24. }
  25. }