真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Spring中怎么動(dòng)態(tài)注冊(cè)Bean

這篇文章將為大家詳細(xì)講解有關(guān)Spring中怎么動(dòng)態(tài)注冊(cè)Bean,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的于都網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

動(dòng)態(tài)注冊(cè)Bean到Spring容器是很簡(jiǎn)單的,我們只要繼承BeanDefinitionRegistryPostProcessor

@Component
public class TestDynamicRegistBean implements BeanDefinitionRegistryPostProcessor {

    @Override
    public void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry) throws BeansException {
        System.out.println("yzy:TestDynamicRegistBean.postProcessBeanDefinitionRegistry");
        GenericBeanDefinition beanDefinition = new GenericBeanDefinition();
        beanDefinition.setBeanClass(User.class);
        beanDefinition.getPropertyValues().add("name", "yangzhongyu");
        registry.registerBeanDefinition("user", beanDefinition);
    }
}

還可以重載postProcessBeanFactory來(lái)完成同樣的事情,注冊(cè)User user 到Spring容器。

 @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException{
        System.out.println("yzy:TestDynamicRegistBean.postProcessBeanFactory");
        GenericBeanDefinition beanDefinition = new GenericBeanDefinition();
        beanDefinition.setBeanClass(User.class);
        beanDefinition.getPropertyValues().add("age", "yangzhongyu");
        ((DefaultListableBeanFactory) beanFactory)
                .registerBeanDefinition("user", beanDefinition);


    }

MyBatis,Dubbo等采用了這個(gè)技術(shù)來(lái)實(shí)現(xiàn)Bean的動(dòng)態(tài)注冊(cè).

在MyBatis中我們定義的Mapper本質(zhì)上只是一個(gè)Java的普通接口,那么是如何交給到Spring容器管理的呢?

其中的原理就是通過(guò)CGLib或者JDK動(dòng)態(tài)代理動(dòng)態(tài)生成了Mapper接口的子類,并且通過(guò)Spring的動(dòng)態(tài)注冊(cè)機(jī)制實(shí)例化對(duì)象.

beanFactory.registerSingleton把創(chuàng)建好的對(duì)象放入Spring容器中管理。

@Mapper
public interface UserMapper {

	@InsertProvider(type = SqlFactory.class, method = "insert")
	@Options(useGeneratedKeys = true)
	Boolean insert(T data);


	@UpdateProvider(type = SqlFactory.class, method = "update")
	Boolean update(T data);


	@SelectProvider(type = SqlFactory.class, method = "find")
	T find(Class clazz, Query query);

	@SelectProvider(type = SqlFactory.class, method = "find")
	List findList(Class clazz, Query query);


}
@Component
public class MapperRegistryPostProcessor implements BeanDefinitionRegistryPostProcessor {
    @Override
    public void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry) throws BeansException {
    }

    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        beanFactory.registerSingleton("userMapper", create(UserMapper.class));
    }

    private   T  create(final Class interfaceClazz) {
        return (T) Proxy.newProxyInstance(interfaceClazz.getClassLoader(),
                new Class[]{interfaceClazz}, new InvocationHandler() {
                    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                    //    String respone = (String) method.invoke(proxy, args);
                        boolean isMapper = interfaceClazz.isAnnotationPresent(Mapper.class);
                        if(isMapper){
                            Method[] methods = interfaceClazz.getDeclaredMethods();
                            for(Method m : methods){
                                if(m.isAnnotationPresent(SelectProvider.class)){
                                    //通過(guò)JDBC執(zhí)行SQL把結(jié)果返回
                                }else if(m.isAnnotationPresent(UpdateProvider.class)){

                                }else if(m.isAnnotationPresent(InsertProvider.class)){

                                }else if(m.isAnnotationPresent(DeleteProvider.class)){

                                }
                            }
                        }
                        System.out.println("method="+method.getName());
                        return 0;
                    }
                });
    }
}

關(guān)于Spring中怎么動(dòng)態(tài)注冊(cè)Bean就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。


當(dāng)前標(biāo)題:Spring中怎么動(dòng)態(tài)注冊(cè)Bean
網(wǎng)頁(yè)URL:http://weahome.cn/article/jphepp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部