Spring实战之容器中的工程Bean用法示例

网友投稿 224 2023-05-30

Spring实战之容器中的工程Bean用法示例

本文实例讲述了Spring容器中的工程Bean用法。分享给大家供大家参考,具体如下:

一 配置

xmlns="http://springframework.org/schema/beans"

xsi:schemaLocation="http://springframework.org/schema/beans

http://springframework.org/schema/beans/spring-beans-4.0.xsd">

xmlns="http://springframework.org/schema/beans"

xsi:schemaLocation="http://springframework.org/schema/beans

http://springframework.org/schema/beans/spring-beans-4.0.xsd">

二 Bean工厂

package org.crazyit.app.factory;

import java.lang.reflect.*;

import org.springframework.beans.factory.FactoryBean;

public class GetFieldFactoryBean implements FactoryBean

{

private String targetClass;

private String targetField;

// targetClass的setter方法

public void setTargetClass(String targetClass)

{

this.targetClass = targetClass;

}

// targetField的setter方法

public void setTargetField(String targetField)

{

this.targetField = targetField;

}

// 返回工厂Bean所生产的产品

public Object getObject() throws Exception

{

Class> clazz = Class.forName(targetClass);

Field field = clazz.getField(targetField);

return field.get(null);

}

// 获取工厂Bean所生产的产品的类型

public Class extends Object> getObjectType()

{

return Object.class;

}

// 返回该工厂Bean所生成的产品是否为单例

public boolean isSingleton()

{

return false;

}

}

三 测试类

package lee;

import org.springframewohttp://rk.context.*;

import org.springframework.context.support.*;

public class SpringTest

{

public static void main(String[] args)throws Exception

{

ApplicationContext ctx = new

ClassPathXmlApplicationContext("beans.xml");

// 下面2行代码获取的FactoryBean的产品

System.out.println(ctx.getBean("north"));

System.out.println(ctx.getBean("theValue"));

// 下面代码可获取的FactoryBean本身

System.out.println(ctx.getBean("&theValue"));

}

}

四 测试结果

North

1005

org.crazyit.app.factory.GetFieldFactoryBean@56ac3a89

五 说明

java.awt.BorderLayout定义如下

public class BorderLayout implements LayoutManager2,

java.io.Serializable {

/**

* The north layout constraint (top of container).

*/

public static final String NORTH = "North";

}

java.sql.ResultSet定义如下

public interface ResultSet extends Wrapper, AutoCloseable {

int TYPE_SCROLL_SENSITIVE = 1005;

}

更多关于java相关内容感兴趣的读者可查看本站专题:《Spring框架入门与进阶教程》、《Java数据结构与算法教程》、《Java操作DOM节点技巧总结》、《Java文件与目录操作技巧汇总》和《Java缓存操作技巧汇总》

希望本文所述对大家java程序设计有所帮助。

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Spring Boot整合tk.mybatis代码实例
下一篇:SpringBoot打印启动时异常堆栈信息详解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~