liyong
2025-05-31 96eef805a3727639794ea90bfa82b3883f9f3d9c
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.web.controller.init;
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("!!!!!!!!!!!!!!!!!!!!!");
    }
}