第一种
使用默认构造函数构建. 在Spring的配置文件中使用bean标签,配以id和class属性之后,且没有其他属性和标签时. 采用的就是默认构造函数创建bean对象,此时如果类中没有默认构造函数,则对象无法创建.
bean.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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="IAccountService" class="com.demo.service.impl.IAccountServiceImpl"></bean>
</beans>
接口:
@WebService
public interface IAccountService {
public void saveAccount();
}
实现类:
//业务层实现类
public class IAccountServiceImpl implements IAccountService {
// private AccountDao accountDao = (AccountDao) BeanFactory.getBean("accountDao");
public IAccountServiceImpl() {
System.out.println("Service对象创建成功了!");
}
@Override
public void saveAccount() {
System.out.println("代码执行");
}
}
执行main函数:
public class Client {
/**
* ClassPathXmlApplicationContext : 它可以加载类路径下的配置文件,要求配置文件在类路径下,不在的话加载不了
* FileSystemXmlApplicationContext : 他可以加载磁盘任意路径下的配置文件(必须有访问权限才行)
* <p>
* <p>
* 核心容器的接口引发出的问题:
* ApplicationContext: 单例对象适用 (常用)
* 它在创建容器时,创建对象采取的策略是采用立即加载的方式,也就是说,只要一读取完配置文件马上就创建配置文件中配置的对象。
* BeanFactory: 多例对象适用
* 它在创建容器时,创建对象采取的策略是采用延迟加载的方式。也就是说,什么时候根据id获取对象了,什么时候才真正的创建对象。
*/
public static void main(String[] args) {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("bean.xml");
IAccountService iAccountService = (IAccountService) applicationContext.getBean("accountService");
iAccountService.saveAccount();
}
第二种:
使用普通工厂的方法创建对象(使用某个类中的方法创建对象,并且存入spring容器)
//模拟工厂类(该类可能是存在于jar包中,我们无法通过源码的方式来提供默认构造函数)
public class InstanceFactory {
public IAccountService getIAccountService(){
return new IAccountServiceImpl();
}
}
第三种:
使用工厂中的静态方法创建对象(使用某个类中的静态方法创建对象,并存入spring容器)
//模拟工厂类(该类可能是存在于jar包中,我们无法通过源码的方式来提供默认构造函数)
public class InstanceStaticFactory {
public static IAccountService getIAccountService(){
return new IAccountServiceImpl();
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/105093.html