main方法中注入Spring bean

Posted xiaopengfei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了main方法中注入Spring bean相关的知识,希望对你有一定的参考价值。

在有些情况下需要使用main使用Spring bean,但是main方法启动并没有托管给Spring管理,会导致bean失败,报空指针异常。

可以使用 ClassPathXmlApplicationContext 加载配置文件,获获取bean:

public static void main(String[] args) {
            @SuppressWarnings("resource")
            ClassPathXmlApplicationContext  context = new ClassPathXmlApplicationContext("classpath:spring.xml");//spring.xml文件为spring配置文件
            context.registerShutdownHook();
            context.start();
            CityConfig cityConfig=(CityConfig)context.getBean("cityConfig");//获取CityConfig bean
            System.out.println(cityConfig);
         }

  

以上是关于main方法中注入Spring bean的主要内容,如果未能解决你的问题,请参考以下文章

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

Spring入门篇3 --- 依赖注入(DI)方式集合注入

service 无法注入bean问题

单元测试怎么注入service

spring工具类中注入使用bean

如何调用spring配置文件手动注入的bean