api客户端、服务端应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
537 B

  1. package com.bfd.app;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.kafka.annotation.EnableKafka;
  5. import org.springframework.scheduling.annotation.EnableScheduling;
  6. /**
  7. * 主入口
  8. *
  9. * @author jian.mao
  10. * @date 2023年7月4日
  11. * @description
  12. */
  13. @SpringBootApplication
  14. @EnableKafka
  15. public class Application {
  16. public static void main(String[] args) {
  17. SpringApplication.run(Application.class, args);
  18. }
  19. }