第三方jar包中的类已通过@Component修饰,在工程中怎么创建bean

引用第三方的jar包,若jar包中的类已经通过@Component修饰,想让工程创建第三方jar包中的bean,必须要扫描这个jar包。

例如,第三方jar中有一个类是这样的,

package com.axf.rpc;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.stereotype.Component;

/**
 * Created by anxufeng on 2019/5/8
 */
@Component
public class myImporter implements BeanPostProcessor {

    public Object postProcessBeforeInitialization(Object o, String s) throws BeansException {
        return o;
    }

    public Object postProcessAfterInitialization(Object o, String s) throws BeansException {
        System.out.println("****&&***");
        return o;
    }
}

在自己的工程中引入了这个jar

        
            com.axf
            rpc-test
            1.0-SNAPSHOT
        

若是spring-boot项目中,须在启动类的@ComponentScan中加入jar包的被扫描路径,如@ComponentScan(basePackages = {"com.axf", "com.xxx"}),这样,第三方的jar中被@Component等注解修饰的Bean的可以自动被扫描并创建出来.

    示例中myImporter实现了BeanPostProcessor,BeanPostProcessor接口是spring的扩展点,spring在初始化某个bean的前后会分别调用BeanPostProcessor的子类的postProcessBeforeInitialization方法和postProcessAfterInitialization方法,而myImporter实现了BeanPostProcessor,所以spring在初始化bean的时候会调用myImporter的这两个方法,下面是启动的部分结果,可以很清楚的看到,每初始化一个bean,就会打印一行*号。

第三方jar包中的类已通过@Component修饰,在工程中怎么创建bean_第1张图片

你可能感兴趣的:(spring)