mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-12 04:16:51 +08:00
26 lines
504 B
Java
26 lines
504 B
Java
package com.xboe.course;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.boot.ApplicationArguments;
|
|
import org.springframework.boot.ApplicationRunner;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/**
|
|
* 本地测试时使用
|
|
* @author seastar
|
|
*
|
|
*/
|
|
@Component
|
|
public class ApplicationStartRunner implements ApplicationRunner {
|
|
|
|
@Autowired
|
|
CourseJsonRunner runner;
|
|
|
|
@Override
|
|
public void run(ApplicationArguments args) throws Exception {
|
|
|
|
|
|
}
|
|
|
|
}
|