我总是在生产环境中在网站开发中使用spring boot,我很危险地在业余时间玩游戏,所以我对一些DI培训有所了解,我试图在主类中注入一个组件,但是我很惊讶这没有用使用bean注入,为什么??
这是我的小代码
@Configuration
@SpringBootApplication
public class ExposéApplication {
@Autowired
private static Joeur ikram;
public static void main(String[] args) {
SpringApplication.run(ExposéApplication.class, args);
System.out.println(ikram);
}
@Bean
public Joeur createjoueur(){
System.out.println("bean created");
return new Joeur("ikram");
}
}