我想使用spring-data&一些测试应用程序的IOC容器。
问题是:如何引导应用程序? 在spring-mvc的情况下,我们从控制器移动,但如何在没有mvc的情况下执行此操作?
我的代码需要一些类似main的方法,但应用程序public static void main
已经用于spring初始化:
@SpringBootApplication
public class App {
public static void main(String[] args) {
SpringApplication.run(App.class, args);
}
}
那么,我应该在哪里放置代码?
答案 0 :(得分:3)
有CommandLineRunner
接口只是意味着这样做。
@Service
class FooBar implements CommandLineRunner {
// Inject whatever collaborator you need
@Override
void run(String... args) throws Exception {
// Execute whatever you need.
// command-line arguments are available if you need them
}
}