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对象(代码片段