chenrui
4 天以前 8c56f523f74d9265056cf72a0f4aa22d708b1dba
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("!!!!!!!!!!!!!!!!!!!!!");
    }
}