springboot框架实现启动项目执行指定代码
2021-07-09 17:06
标签:code except row size span man 项目启动 err 指定 说明: 当有写代码需要在项目启动时执行的时候(即项目启动完成前),可以使用这个方法。 步骤: 代码: 代码截图示例:
springboot框架实现启动项目执行指定代码 标签:code except row size span man 项目启动 err 指定 原文地址:https://www.cnblogs.com/lu51211314/p/9564897.html
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;
@Component
public class RunTest implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
System.err.println("hello beauty");
}
}
文章标题:springboot框架实现启动项目执行指定代码
文章链接:http://soscw.com/index.php/essay/102869.html