spring main方法中获取bean...

spring main方法中获取bean...,第1张

不对,三种方式

方式一

ApplicationContext context = new ClassPathXmlApplicationContext(

new String[] {"servicesxml", "daosxml"});

// an ApplicationContext is also a BeanFactory (via inheritance)

BeanFactory factory = (BeanFactory) context;

方式二

ApplicationContext c1 = new FileSystemXmlApplicationContext(new String[] {"beansxml"});

方式三

XmlBeanFactory context=new XmlBeanFactory(new ClassPathResource("beansxml"));

HelloWorld hw = (HelloWorld)contextgetBean("helloworld");

通用的方法来了,神器啊,前的 1、2两种方法并不通用,可以抛弃了。

在配置文件中加入:

Xml代码

<!-- 用于持有ApplicationContext,可以使用SpringContextHoldergetBean('xxxx')的静态方法得到spring bean对象 -->

<bean class="comxxxxxSpringContextHolder" lazy-init="false" />

Java代码

import orgspringframeworkcontextApplicationContext;

import orgspringframeworkcontextApplicationContextAware;

/

以静态变量保存Spring ApplicationContext, 可在任何代码任何地方任何时候中取出ApplicaitonContext

/

public class SpringContextHolder implements ApplicationContextAware {

private static ApplicationContext applicationContext;

/

实现ApplicationContextAware接口的context注入函数, 将其存入静态变量

/

public void setApplicationContext(ApplicationContext applicationContext) {

SpringContextHolderapplicationContext = applicationContext; // NOSONAR

}

/

取得存储在静态变量中的ApplicationContext

/

public static ApplicationContext getApplicationContext() {

checkApplicationContext();

return applicationContext;

}

/

从静态变量ApplicationContext中取得Bean, 自动转型为所赋值对象的类型

/

@SuppressWarnings("unchecked")

public static <T> T getBean(String name) {

checkApplicationContext();

return (T) applicationContextgetBean(name);

}

/

从静态变量ApplicationContext中取得Bean, 自动转型为所赋值对象的类型

/

@SuppressWarnings("unchecked")

public static <T> T getBean(Class<T> clazz) {

checkApplicationContext();

return (T) applicationContextgetBeansOfType(clazz);

}

/

清除applicationContext静态变量

/

public static void cleanApplicationContext() {

applicationContext = null;

}

private static void checkApplicationContext() {

if (applicationContext == null) {

throw new IllegalStateException("applicaitonContext未注入,请在applicationContextxml中定义SpringContextHolder");

}

}

}

BeanFactory允许InputStream作为构造函数的参数,也可以orgspringframeworkcoreioResource接口。下面这个例子是用ClassPathResource作为参数:

Resource resource = new ClassPathResource("beanxml");

BeanFactory factory = new XmlBeanFactory(resource);

ActionBean action = (ActionBean) factorygetBean("actionBean");

如果同一个Bean在配置文件有多个bean的定义,则用下面的方法取得所有的对象:

Resource resource = new ClassPathResource("beanxml");

ListableBeanFactory factory = new XmlBeanFactory(resource);

Map helloBeans = factorygetBeansOfType(ActionBeanclass, false, false);

以上就是关于spring main方法中获取bean...全部的内容,包括:spring main方法中获取bean...、如何取得Spring管理的bean、Spring中读取bean配置文件的几种方式等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10073268.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存