在spring中,我们通过如下代码取得一个spring托管类:

  1. ApplicationContext ac = new FileSystemXmlApplicationContext("applicationContext.xml");
  2. ac.getBean("beanId");

在spring boot中,我参考了如下三篇文章:

让非Spring管理的类获得一个Bean

http://blog.sina.com.cn/s/blog_72ef7bea0102wcvk.htmlblog.sina.com.cn/s/blog_72ef7bea0102wcvk.html

Spring Boot普通类调用bean

http://blog.csdn.net/u014695188/article/details/52396880

SpringBoot-获取上下文

http://www.2cto.com/kf/201701/582935.html

做了一些实践。

首先,我们需要一个媒介,来取得AppicationContext——SpringUtil

这个类有两种方式:

1. 实现ApplicationContextAware接口

@Component

public class SpringUtil implements ApplicationContextAware {

<span class="hljs-keyword">private</span> <span class="hljs-keyword">static</span> ApplicationContext applicationContext = <span class="hljs-keyword">null</span>;</br>

// 非@import显式注入,@Component是必须的,且该类必须与main同包或子包


// 若非同包或子包,则需手动import 注入,有没有@Component都一样


// 可复制到Test同包测试

<span class="hljs-annotation">@Override</span></br>
<span class="hljs-function"><span class="hljs-keyword">public</span> <span class="hljs-keyword">void</span> <span class="hljs-title">setApplicationContext</span><span class="hljs-params">(ApplicationContext applicationContext)</span> <span class="hljs-keyword">throws</span> BeansException </span>{</br>
<span class="hljs-keyword">if</span>(SpringUtil.applicationContext == <span class="hljs-keyword">null</span>){</br>
SpringUtil.applicationContext = applicationContext;</br>
}</br>
System.out.println(<span class="hljs-string">"---------------com.ilex.jiutou.util.Test.Main.SubPackage.SpringUtil---------------"</span>);</br>
}</br></br> <span class="hljs-comment">//获取applicationContext</span></br>
<span class="hljs-function"><span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> ApplicationContext <span class="hljs-title">getApplicationContext</span><span class="hljs-params">()</span> </span>{</br>
<span class="hljs-keyword">return</span> applicationContext;</br>
}</br>



//通过name获取 Bean.

public static Object getBean(String name){

return getApplicationContext().getBean(name);

}</br></br>

<span class="hljs-comment">//通过class获取Bean.</span></br>
<span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> &lt;T&gt; <span class="hljs-function">T <span class="hljs-title">getBean</span><span class="hljs-params">(Class&lt;T&gt; clazz)</span></span>{</br>
<span class="hljs-keyword">return</span> getApplicationContext().getBean(clazz);</br>
}</br></br> <span class="hljs-comment">//通过name,以及Clazz返回指定的Bean</span></br>
<span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> &lt;T&gt; <span class="hljs-function">T <span class="hljs-title">getBean</span><span class="hljs-params">(String name,Class&lt;T&gt; clazz)</span></span>{</br>
<span class="hljs-keyword">return</span> getApplicationContext().getBean(name, clazz);</br>
}</br>

}

需要被spring注入,覆写setApplicationContext

2. 普通类

//@Component  在不可扫描区域,且不需要注入,作为一个普通的util类

public class SpringUtil{




private static ApplicationContext applicationContext = null;

<span class="hljs-function"><span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> <span class="hljs-keyword">void</span> <span class="hljs-title">setApplicationContext</span><span class="hljs-params">(ApplicationContext applicationContext)</span></span>{</br>
<span class="hljs-keyword">if</span>(SpringUtil.applicationContext == <span class="hljs-keyword">null</span>){</br>
SpringUtil.applicationContext = applicationContext;</br>
}</br></br> }</br></br> <span class="hljs-comment">//获取applicationContext</span></br>
<span class="hljs-function"><span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> ApplicationContext <span class="hljs-title">getApplicationContext</span><span class="hljs-params">()</span> </span>{</br>
<span class="hljs-keyword">return</span> applicationContext;</br>
}</br></br> <span class="hljs-comment">//通过name获取 Bean.</span></br>
<span class="hljs-function"><span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> Object <span class="hljs-title">getBean</span><span class="hljs-params">(String name)</span></span>{</br>
<span class="hljs-keyword">return</span> getApplicationContext().getBean(name);</br></br> }</br> <span class="hljs-comment">//通过class获取Bean.</span></br>
<span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> &lt;T&gt; <span class="hljs-function">T <span class="hljs-title">getBean</span><span class="hljs-params">(Class&lt;T&gt; clazz)</span></span>{</br>
<span class="hljs-keyword">return</span> getApplicationContext().getBean(clazz);</br>
}</br> <span class="hljs-comment">//通过name,以及Clazz返回指定的Bean</span></br>
<span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> &lt;T&gt; <span class="hljs-function">T <span class="hljs-title">getBean</span><span class="hljs-params">(String name,Class&lt;T&gt; clazz)</span></span>{</br>
<span class="hljs-keyword">return</span> getApplicationContext().getBean(name, clazz);</br>
}</br>

}

不需要被注入,但需要手动调用

主函数

@SpringBootApplication
@Import(value={UserFooterService.class})
public class Test {
public static void main(String[] args) {
ApplicationContext ctx = SpringApplication.run(Test.class, args);
<span class="hljs-comment">//    SpringUtil.setApplicationContext(ctx);  这个对应于AnoStatic</span></br></br>

    String[] beanNames =  ctx.getBeanDefinitionNames();</br>
System.out.println(<span class="hljs-string">"beanNames个数:"</span>+beanNames.length);</br>
<span class="hljs-keyword">for</span>(String bn:beanNames){</br>
System.out.println(bn);</br>
}</br></br> <span class="hljs-comment">// 测试加载UserFooterService</span></br>
UserFooterService userFooterService = (UserFooterService) SpringUtil.getBean(UserFooterService.class);</br>
List&lt;Map&lt;String,Object&gt;&gt; list = userFooterService.hotTopic(<span class="hljs-string">"0"</span>, <span class="hljs-string">"5"</span>);</br>
System.out.println(list.toString());</br></br> <span class="hljs-comment">// 测试加载SpringUtil</span></br>
SpringUtil springUtil = (SpringUtil)SpringUtil.getBean(SpringUtil.class);</br>
System.out.println(springUtil);</br>
}</br></br>

// @Bean


// public SpringUtil springUtil() {


// return new SpringUtil();


// }


}

UserFooterService是一个业务类,这里不榕树

建立如下的测试结构:

Main/Test 主函数

AnoStatic/SpringUtil  普通类

Main/SubPackage/SpringUtil 实现ApplicationContextAware,但为主函数子包

NonSubPackage/SpringUtil 实现ApplicationContextAware,但非主函数子包和同包

SpringUtil注入方式有三种,在参考的三篇博客均有说明,在此仅总结:

1. 类与SpringBootApplication同包或子包,此在ComponentScan的扫描范围之内,在类上@Component注解即可,会被自动注入;

2. 无论位置,都可通过在主函数用@import或@bean来手动注入。

第一种SpringUtil方式必须被spring注入,否则会报

Exception in thread "main" java.lang.NullPointerException

at com.ilex.jiutou.util.Test.NonSubPackage.SpringUtil.getBean(SpringUtil.java:40)

at com.ilex.jiutou.util.Test.Main.Test.main(Test.java:34)

表示applicationContext获取失败

第二种方式,SpringUtil可被注入可不被注入

当不注入时,主函数这一段:

        // 测试加载SpringUtil
SpringUtil springUtil = (SpringUtil)SpringUtil.getBean(SpringUtil.class);
System.out.println(springUtil);

报错:

No qualifying bean of type [**.Test.AnoStatic.SpringUtil


spring boot 的 ApplicationContext 及 getbean的更多相关文章

  1. Spring Boot 获取ApplicationContext

    package com.demo; import org.springframework.beans.BeansException; import org.springframework.contex ...

  2. 曹工说Spring Boot源码(4)-- 我是怎么自定义ApplicationContext,从json文件读取bean definition的?

    写在前面的话 相关背景及资源: 曹工说Spring Boot源码系列开讲了(1)-- Bean Definition到底是什么,附spring思维导图分享 工程代码地址 思维导图地址 工程结构图: 大 ...

  3. spring boot: 中文显示乱码,在applicationContext里面配置

    spring boot: 中文显示乱码,在applicationContext里面配置 applicationContext.properties ########################## ...

  4. spring boot启动报错Error starting ApplicationContext(未能配置数据源)

    主要错误:Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource c ...

  5. Spring Boot -- 启动流程分析之ApplicationContext 中

    上一节我们已经分析到AbsractApplicationContext类refresh方法中的postProcessBeanFactory方法,在分析registerBeanPostProcessor ...

  6. Running Dubbo On Spring Boot

    Dubbo(http://dubbo.io/) 是阿里的开源的一款分布式服务框架.而Spring Boot则是Spring社区这两年致力于打造的简化Java配置的微服务框架. 利用他们各自优势,配置到 ...

  7. How Spring Boot Autoconfiguration Magic Works--转

    原文地址:https://dzone.com/articles/how-springboot-autoconfiguration-magic-works In my previous post &qu ...

  8. How to use JDBC-Authentication of Spring Boot/Spring Security with Flyway

    java.lang.IllegalStateException: Failed to load ApplicationContext at org.springframework.test.conte ...

  9. Spring boot将配置属性注入到bean类中

    一.@ConfigurationProperties注解的使用 看配置文件,我的是yaml格式的配置: // file application.yml my: servers: - dev.bar.c ...

随机推荐

  1. vue 自定义指令input表单的数据验证

    一.代码 <template> <div class="check" > <h3>{{msg}}</h3> <div clas ...

  2. WebService Exceptions

    一. Exception in thread "main" java.lang.ExceptionInInitializerError at com.sun.xml.interna ...

  3. CPU的load和使用率傻傻分不清(转)

    转自: https://www.cnblogs.com/yunxizhujing/p/9382396.html 1. 什么是Cpu的Load 使用uptime.top或者查看/proc/loadavg ...

  4. Python学习day40-并发编程(终)

    figure:last-child { margin-bottom: 0.5rem; } #write ol, #write ul { position: relative; } img { max- ...

  5. JZOJ5870 【NOIP2018模拟9.15】地图

    题目描述 Description

  6. 洛谷P2333 [SCOI2006]一孔之见

    传送门 辣鸡题目毁我人生败我前程 50分代码 //Achen #include<algorithm> #include<iostream> #include<cstrin ...

  7. JS实现数据双向绑定

    本文参考https://www.cnblogs.com/tianhaining/p/8425345.html 首先先说个面试题哈,就是vue中的v-model是如何实现双向数据绑定的咳咳,下面开始背诵 ...

  8. gitlab merge request

    分支提了mr之后, 又有commit 不用重新提mr,mr中会自动更新 要保证项目下的.git目录中有hooks这个目录(如果是从github迁移到gitlab的项目, 可能没有这个目录, 导致mr不 ...

  9. 原生 js 实现摇一摇功能

    参考此大牛的博客:https://blog.csdn.net/chclvzxx/article/details/46325053

  10. python 可迭代对象,迭代器,生成器的区别及使用

    可迭代对象 可迭代对象类型:list,dict,tuple,str,set,deque等 如何判断一个对象是否是可迭代对象,可以通过dir()方法看它里面有没有__iter__方法,如果有这个方法就是 ...