iis服务器助手广告广告
返回顶部
首页 > 资讯 > 后端开发 > Python >Springboot如何通过自定义工具类获取bean
  • 852
分享到

Springboot如何通过自定义工具类获取bean

2024-04-02 19:04:59 852人浏览 独家记忆

Python 官方文档:入门教程 => 点击学习

摘要

目录SpringBoot 自定义工具类获取bean在工具类注入bean的三种方式1. 需求/目的2.使用环境3.方法一:获取ApplicationContext上下文4.方法二:将工

springboot 自定义工具类获取bean



@Component
public class ApplicationContextUtil implements ApplicationContextAware {
    private static ApplicationContext context;
 
    // springboot加载完成后会把beanfactory作为参数传给次方法,然后我们可以把工厂赋值给context。
    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        context = applicationContext;
    }
    // 通过context获取bean
    public static Object getBean(String beanName) {
        return context.getBean(beanName);
    }
}

在工具类注入bean的三种方式

1. 需求/目的

比如:在进行使用HandlerInterceptorAdapter拦截器时,需要访问数据库来判断是否拦截请求,这时就需要在拦截器的判断类中注入Dao或Service对象来执行sql语句。而直接使用@Autowired无法进行注入。

2.使用环境

spring boot 2.0.3

3.方法一:获取ApplicationContext上下文

在applicationContext对象中可以获取到所有的bean

第一步:准备ApplicationContextAware的实现类,用于获取applicationContext对象


import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
import com.authstr.ff.utils.exception.Assert;
@Component
public class SpringUtils implements ApplicationContextAware {
    private static Log log = LogFactory.getLog(SpringUtils.class);
    private static ApplicationContext applicationContext;
    public   void setApplicationContext(ApplicationContext applicationContext) {
        SpringUtils.applicationContext = applicationContext;
    }
    private static ApplicationContext getContext() {
        return applicationContext;
    }
    public static Object getBean(String beanId) {
        return SpringUtils.getBean(Object.class, beanId);
    }
    public static <T> T getBean(Class<T> clazz, String beanId) throws ClassCastException {
        ApplicationContext context = SpringUtils.getContext();
        Assert.isTrue(StringUtils.hasText(beanId), "beanId must not null!",true);
        boolean a=context.containsBean(beanId);
        Assert.isTrue(context.containsBean(beanId), "beanId :[" + beanId + "] is not exist!",true);
        Object bean = null;
        bean = context.getBean(beanId);
        return (T)bean;
    }
}

这是已经写好的工具类,可以根据bean的id获取对应的bean

第二步: 对要获取的bean设置id

如:


@Component("basicDaoImpl")
public class BasicDaoImpl extends AbstractDao implements BasicDao

第三步: 在要使用的类中写一个方便调用的方法


public BasicDaoImpl getBasicDaoImpl (){
        return SpringUtils.getBean(BasicDaoImpl .class, "basicDaoImpl");
    }

4.方法二:将工具类的对象也添加为bean

第一步:当前类添加@Component注解

第二步:对要获取的对象使用@Autowired 注解


@Autowired 
private BasicDaoImpl basicDaoImpl;

第三步:在创建该工具类的地方,这样定义


@Bean
  public AuthInterceptor authInterceptor(){
        return new AuthInterceptor();
    }

5.方法三:在spring Boot 启动时创建工具类自身的静态对象

在本质上,同方法二

第一步:当前类添加@Component注解

第二步:在工具类创建一个自身的静态对象


public static AuthInterceptor authInterceptor;

第三步:使用@PostConstruct注解,在springboot加载时执行该方法


  @PostConstruct
    public void init() {
        authInterceptor= this;
        AuthInterceptor .authInterceptor= this.authInterceptor;
    }

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

--结束END--

本文标题: Springboot如何通过自定义工具类获取bean

本文链接: https://www.lsjlt.com/news/136659.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作