liding
2025-06-03 99b8950ca72fc71144d12844eccae8d69c331a92
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("!!!!!!!!!!!!!!!!!!!!!");
    }
}