@Autowired springboot对象为null

时间:2019-01-13 23:18:11

标签: java spring spring-boot dependency-injection

我总是在生产环境中在网站开发中使用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");
        }
}

0 个答案:

没有答案