Spring中创建bean的三种方式:
第一种方式:
 <!--创建bean对象的第一种方式:使用默认构造函数创建
        在spring的配置文件中使用bean标签,配以id和class属性之后,且没有其他属性和标签时,
        采用的就是默认构造函数创建bean对象,此时如果类中没有默认构造函数,则对象无法创建。
    -->
<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"></bean>

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

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