在Spring Boot中,有些代码是WEB功能,例如api等,但是有些逻辑是非WEB,启动时就要调用并持续运行的,该如何加载自己的非WEB逻辑呢?SpringBootApplication类实现CommandLineRunner并覆盖ru
在Spring Boot中,有些代码是WEB功能,例如api等,但是有些逻辑是非WEB,启动时就要调用并持续运行的,该如何加载自己的非WEB逻辑呢?
SpringBootApplication类实现CommandLineRunner并覆盖run()方法
@springBootApplication public class ZjkApplication implements CommandLineRunner{ 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"); } }
--结束END--
本文标题: Spring Boot启动时调用自己的非web逻辑
本文链接: https://lsjlt.com/news/224586.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0