Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to select executable tasks when springBoot starts

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

What this article shares with you is about how to choose executable tasks when springBoot starts. The editor thinks it is very practical, so I share it with you to learn. I hope you can get something after reading this article.

CommandLineRunner

The source code is described as follows:

Spring Batch jobs. Runs all jobs in the surrounding context by default. Can also be used to launch a specific job

By providing a jobName .

That is, batch processing starts when the spring container starts. It is loaded and run when spring starts.

How to use: customize a model to implement the and interface and override the run method

Package org.springboot.sample.runner

Import org.springframework.boot.CommandLineRunner

Import org.springframework.stereotype.Component

@ Component

Public class MyStartupRunner implements CommandLineRunner {

@ Override

Public void run (String... Args) throws Exception {

System.out.println ("> service startup execution, perform operations such as loading data > service startup execution 2222 > service startup execution 111111

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report