Spring Boot启动时调用自己的非web逻辑

时间:2021-11-06 07:58:28

在spring Boot中,有些代码是WEB功能,例如API等,但是有些逻辑是非WEB,启动时就要调用并持续运行的,该如何加载自己的非WEB逻辑呢?

SpringBootApplication类实现CommandLineRunner并覆盖run()方法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@SpringBootApplication
public class ZjkApplication implements CommandLineRunner{
 /**
  * @param args
  */
 public static void main(String[] args) {
  // TODO Auto-generated method stub
  // WEB
  SpringApplication.run(ZjkApplication.class, args);
 }
 @Override
 public void run(String... args) throws Exception {
  //your logic
  System.out.println("into zjk run");
 }
}

使用上面方式启动的SPRING BOOT,即可以运行WEB又可以运行自己的逻辑

总结

以上所述是小编给大家介绍的Spring Boot启动时调用自己的非web逻辑,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!

原文链接:http://blog.csdn.net/zhangjikuan/article/details/76181657