`
zzc1684
  • 浏览: 1224437 次
  • 性别: Icon_minigender_1
  • 来自: 广州
文章分类
社区版块
存档分类
最新评论

如何取得Spring管理的bean (请用第3种方法)

阅读更多

如何取得Spring管理的bean (请用第3种方法):

1、servlet方式加载时,
【web.xml】

Xml代码
  1. <servlet>
  2. <servlet-name>springMVC</servlet-name>
  3. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  4. <init-param>
  5. <param-name>contExtConfigLocation</param-name>
  6. <param-value>classpath*:/springMVC.xml</param-value>
  7. </init-param>
  8. <load-on-startup>1</load-on-startup>
  9. </servlet>

spring容器放在ServletContext中的key是org.springframework.web.servlet.FrameworkServlet.CONTEXT.springMVC
注意后面的springMVC,是你的servlet-name配置的值,注意适时修改。

Java代码
  1. ServletContext sc=略
  2. WebApplicationContext attr = (WebApplicationContext)sc.getAttribute("org.springframework.web.servlet.FrameworkServlet.CONTEXT.springMVC");

 

2、listener方式加载时:
【web.xml】

Xml代码
  1. <context-param>
  2. <param-name>contextConfigLocation</param-name>
  3. <param-value>/WEB-INF/applicationContext</param-value>
  4. </context-param>
  5. <listener>
  6. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  7. </listener>

jsp/servlet】可以这样取得

Java代码
  1. ServletContext context = getServletContext();
  2. WebApplicationContext applicationContext = WebApplicationContextUtils .getWebApplicationContext(context);

 

3、通用的方法来了,神器啊,前的 1、2两种方法并不通用,可以抛弃了。
在配置文件中加入:

Xml代码
  1. <!-- 用于持有ApplicationContext,可以使用SpringContextHolder.getBean('xxxx')的静态方法得到spring bean对象 -->
  2. <bean class="com.xxxxx.SpringContextHolder" lazy-init="false" />

 

Java代码
  1. import org.springframework.context.ApplicationContext;
  2. import org.springframework.context.ApplicationContextAware;
  3. /**
  4. * 以静态变量保存Spring ApplicationContext, 可在任何代码任何地方任何时候中取出ApplicaitonContext.
  5. *
  6. */
  7. public class SpringContextHolder implements ApplicationContextAware {
  8. private static ApplicationContext applicationContext;
  9. /**
  10. * 实现ApplicationContextAware接口的context注入函数, 将其存入静态变量.
  11. */
  12. public void setApplicationContext(ApplicationContext applicationContext) {
  13. SpringContextHolder.applicationContext = applicationContext; // NOSONAR
  14. }
  15. /**
  16. * 取得存储在静态变量中的ApplicationContext.
  17. */
  18. public static ApplicationContext getApplicationContext() {
  19. checkApplicationContext();
  20. return applicationContext;
  21. }
  22. /**
  23. * 从静态变量ApplicationContext中取得Bean, 自动转型为所赋值对象的类型.
  24. */
  25. @SuppressWarnings("unchecked")
  26. public static <T> T getBean(String name) {
  27. checkApplicationContext();
  28. return (T) applicationContext.getBean(name);
  29. }
  30. /**
  31. * 从静态变量ApplicationContext中取得Bean, 自动转型为所赋值对象的类型.
  32. */
  33. @SuppressWarnings("unchecked")
  34. public static <T> T getBean(Class<T> clazz) {
  35. checkApplicationContext();
  36. return (T) applicationContext.getBeansOfType(clazz);
  37. }
  38. /**
  39. * 清除applicationContext静态变量.
  40. */
  41. public static void cleanApplicationContext() {
  42. applicationContext = null;
  43. }
  44. private static void checkApplicationContext() {
  45. if (applicationContext == null) {
  46. throw new IllegalStateException("applicaitonContext未注入,请在applicationContext.xml中定义SpringContextHolder");
  47. }
  48. }
  49. }
分享到:
评论

相关推荐

    Spring在应用中获得Bean的方法

    如果你知道Bean的类型,可以使用`getBean(Class&lt;T&gt; requiredType)`方法,Spring会返回与给定类型匹配的第一个Bean。 ```java ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); ...

    第一章 Spring4 简介及获取Bean

    4. **setter方法注入**:使用`@Autowired`注解在setter方法上,Spring会在运行时调用setter方法注入Bean。 **Spring框架的组件** Spring框架由多个模块组成,包括: 1. **Core Container**:包括Core和Beans模块...

    spring装配bean的3种方式总结

    Spring装配Bean的3种方式总结 Spring框架是Java EE应用程序的核心框架之一,它提供了依赖注入(Dependency Injection,DI)和面向切面编程(Aspect-Oriented Programming,AOP)等功能。依赖注入是Spring框架的核心...

    Spring bean生命周期demo

    在Spring框架中,Bean的生命周期是指从创建到销毁的整个过程。这个过程包含了初始化、正常使用...通过合理的配置和回调方法,我们可以更好地控制Bean的创建、初始化、使用和销毁,从而实现更加灵活和高效的代码管理。

    Spring Bean生命周期&BeanDefinitions1

    3. **Bean接口回调**:如果Bean实现了特定的接口,如`BeanNameAware`、`BeanFactoryAware`或`ApplicationContextAware`,Spring会在适当的时候调用对应的回调方法。这些接口允许Bean获取其ID、BeanFactory引用或...

    spring的Bean配置说明

    在Spring框架中,配置Bean是核心功能之一,它允许开发者声明、管理和注入应用程序中的对象。Spring使用XML配置文件来描述这些Bean及其依赖关系。以下是对Spring Bean配置的详细解释: 1. `&lt;beans&gt;` 根元素:这是...

    第四章 Spring Bean基础1

    Spring Bean 是 Spring 框架的核心概念,它代表了应用程序中的一个对象,这个对象可以被 Spring 容器管理,包括创建、初始化、装配、销毁等生命周期过程。在 Spring 中,Bean 定义是由 `BeanDefinition` 接口来表示...

    4 后台使用Spring中的Bean质量评估193210111党涛1

    3. **统一管理**:Spring容器负责Bean的生命周期管理,包括实例化、初始化、销毁等,使得开发者可以专注于业务逻辑。 4. **AOP支持**:Spring的面向切面编程允许我们定义全局的行为,如事务管理、日志记录等。 5. **...

    Spring--2.Spring 中的 Bean 配置-3

    Java配置使用`@Configuration`注解的类来代替XML,用`@Bean`注解方法来声明Bean。例如: ```java @Configuration public class AppConfig { @Bean public ExampleBean exampleBean() { return new ExampleBean()...

    spring学习----工厂Bean

    3. **自定义类型转换**:当Spring需要将一个Bean的属性值转换为另一个类型时,可以使用FactoryBean来实现自定义的转换逻辑。 4. **第三方库集成**:某些库可能不支持Spring的依赖注入,或者它们的API需要特殊的初始...

    spring bean加载

    Spring通过XML配置、注解配置或Java配置三种方式来定义Bean,并进行加载。接下来,我们将详细探讨Spring Bean加载的过程及其相关知识点。 1. **Bean定义**: - XML配置:在`src`目录下的XML配置文件(如`beans.xml...

    整合Spring与Struts的几种方法

    3. **使用DelegatingActionProxy代理Action**:在`struts-config.xml`中,所有Action的type属性改为`DelegatingActionProxy`,而非具体类名,然后在Spring配置文件中定义对应的bean。这是最灵活的整合方式,因为它...

    Spring攻略PDF版

     第3章 Spring中的Bean配置   3.1 在Spring IoC容器里配置Bean   3.1.1 问题描述   3.1.2 解决方案   3.1.3 实现方法   3.2 实例化Spring IoC容器   3.2.1 问题描述   3.2.2 解决方案...

    Spring--2.Spring 中的 Bean 配置-2-2

    自Spring 3.0起,还可以通过Java类进行配置,创建一个配置类,并使用`@Configuration`标记,使用`@Bean`注解方法来定义Bean。例如: ```java @Configuration public class AppConfig { @Bean public ...

    spring事物的五种配制方法

    1. **第二种方法:使用AOP的声明式事务管理**:这种方式通过AOP(面向切面编程)来配置事务,可以避免为每个Bean都配置代理。通常使用`&lt;tx:annotation-driven&gt;`标签来启用注解驱动的事务管理。 - **特点**:代码更...

    Spring攻略中文版PDF

     第3章 Spring中的Bean配置   3.1 在Spring IoC容器里配置Bean   3.1.1 问题描述   3.1.2 解决方案   3.1.3 实现方法   3.2 实例化Spring IoC容器   3.2.1 问题描述   3.2.2 解决方案...

    spring五种事务配置demo

    第3种方式:使用拦截器 详见spring-core-transaction-3.xml 第4种方式:使用tx标签配置的拦截器 详见spring-core-transaction-4.xml 第5种方式:全注解 详见spring-core-transaction-5.xml

    spring3 hibernate3 整合

    整合Spring3和Hibernate3,主要是为了利用Spring的事务管理和数据访问抽象层来简化Hibernate的使用。以下是整合过程中的一些关键知识点: 1. **配置Spring的Hibernate支持**:在Spring的配置文件中,我们需要定义...

    Spring攻略英文版(附带源码)

     第3章 Spring中的Bean配置   3.1 在Spring IoC容器里配置Bean   3.1.1 问题描述   3.1.2 解决方案   3.1.3 实现方法   3.2 实例化Spring IoC容器   3.2.1 问题描述   3.2.2 解决方案   ...

    Spring学习之Bean的装配多种方法

    Spring学习之Bean的装配多种方法 在Spring框架中,Bean的装配是指将对象的创建交给第三方,并且由第三方进行注入的过程。Spring中的Ioc容器扮演着这样的一个角色,将对象的创建等交给Spring,而服务对象只管使用...

Global site tag (gtag.js) - Google Analytics