liding
5 天以前 3d6d22b23a7e4cd6073af3538cb14480bdd58db0
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("!!!!!!!!!!!!!!!!!!!!!");
    }
}