欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring中创建bean的三种方式

程序员文章站 2022-05-23 19:34:55
...

在IDEA中创建maven项目

整体构架

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.uek</groupId>
    <artifactId>spring01-study01-create-bean</artifactId>
    <version>1.0-SNAPSHOT</version>

    <packaging>jar</packaging>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.0.12.RELEASE</version>
        </dependency>
    </dependencies>

</project>

factory

/**
 * 模拟一个工厂类
 * (给类可能是存在jar包中,我们无法通过修改源码的方式提供默认构造函数)
 */
public class InstanceFactory {

    public IAccountService getAccountService(){
        return  new AccountServiceImpl();
    }
}

/**
 * jar包中的类
 */
public class StaticFactory {

    public static IAccountService getAccountService(){
        return  new AccountServiceImpl();
    }
}

service

public interface IAccountService {

    //保存账户
    void saveAccount();
}

/**
 * 账户的业务实现类
 */
public class AccountServiceImpl implements IAccountService {

    public AccountServiceImpl() {
        System.out.println("对象创建了");
    }

    public void saveAccount() {
        System.out.println("service中的saveAccount方法执行了...");
    }
}

ui

/**
 * 模拟表现层,用于业务调用
 */
public class Client {

    //获取Spring的IOC核心容器,并根据id获取对象
    public static void main(String[] args) {
        //1.获取核心容器对象
        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        //2.根据id获取bean对象
        IAccountService ias = (IAccountService) ac.getBean("accountService");

        ias.saveAccount();

    }
}

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
          http://www.springframework.org/schema/beans/spring-beans.xsd">
    <!--创建bean的三种方式-->
    <!--第一种方式:使用默认函数创建
            在spring的配置文件中使用bean标签,配以id和class属性之后,且没有其他属性和标签时,
            采用的是默认构造函数创建bean对象,此时如果类中没有默认构造函数,则对象无法创建

    <bean id="accountService" class="com.uek.service.impl.AccountServiceImpl"></bean>
    -->

    <!--第二种方式:使用普通工厂中的方法创建对象
         (使用某个类中的方法创建对象,并存入spring容器)

    <bean id="instanceFactory" class="com.uek.factory.InstanceFactory"></bean>
    <bean id="accountService" factory-bean="instanceFactory" factory-method="getAccountService"></bean>
     -->

    <!--第三种方式:使用工厂中的静态方法创建对象
        (使用某个类中的静态方法创建对象,并存入spring容器)
    -->
    <bean id="accountService" class="com.uek.factory.StaticFactory" factory-method="getAccountService"></bean>

</beans>
相关标签: Spring