浅谈springioc实例化bean的三个方法
程序员文章站
2024-02-26 23:07:58
1.构造器
也就是在上一篇讲的那个例子,调用默认的无参构造函数
2.静态工厂方法
1)创建需要执行的方法的类
public class helloworld...
1.构造器
也就是在上一篇讲的那个例子,调用默认的无参构造函数
2.静态工厂方法
1)创建需要执行的方法的类
public class helloworld { public helloworld(){ system.out.println("aaaa"); } public void hello(){ system.out.println("hello world"); } }
2)创建静态工厂
public class helloworldfactory { public static helloworld getinstance(){ return new helloworld(); } }
3)编写applicationcontext.xml配置文件
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> <!-- 在这个配置中,spring容器要用默认的构造函数为helloworld创建对象 --> <bean id="helloworld" class="helloworld"></bean> <!-- 采用静态工厂方法创建对象 factory-method为工厂方法 --> <bean id="helloworld2" class="helloworldfactory" factory-method="getinstance"></bean> </beans>
4)启动容器,创建对象,调用方法
@test public void test(){ applicationcontext context = new classpathxmlapplicationcontext("applicationcontext.xml"); helloworld world = (helloworld)context.getbean("helloworld2"); world.hello(); }
3.实例工厂方法(略)
以上这篇浅谈springioc实例化bean的三个方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: MySQL常用命令 MySQL处理数据库和表的命令
下一篇: java使用电脑摄像头识别二维码
推荐阅读
-
浅谈springioc实例化bean的三个方法
-
荐 浅谈Java中类和对象的初始化、实例化以及方法重载的底层机制
-
浅谈SpringBoot中的Bean初始化方法 @PostConstruct
-
spring配置文件(spring的开发步骤;bean中的scope,init-method,destroy-method;bean的工厂静态方法实例化;工厂动态方法实例化)
-
springioc实例化bean方法介绍
-
浅谈Spring实例化bean的三种方式
-
Spring之IOC通过构造方法实例化Bean的方式
-
Spring实例化Bean的三种方法
-
bean实例化的三种方法
-
[Spring] 实例化Bean的三种方法