基于xml配置的依赖注入:

<bean id="accountService" class="com.ycl.service.impl.AccountServiceImpl" scope="" init-method="" destroy-method="">
        <property name = "" value = "" /ref = ""></property>
</bean>

注解分四类:

    1.用于创建对象的:功能与标签一样
        Component:
            作用:用于把当前类对象存入spring容器中
            属性:value:用于指定bean的id,不写时,默认值为当前类名,首字母改小写
        Controller:一般用于表现层
        Service:一般用于业务层
        Repository:一般用于持久层
        以上三个注解的作用和属性与Component一样,是spring框架为我们提供明确的三层使用的注解,时三层对象更加清晰
        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"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">


        <!--告知spring在创建容器时要扫描的包,配置所需要的标签不是在bean约束中,而是在一个名称为context名称空间和约束中-->
        <context:component-scan base-package="com.ycl"></context:component-scan>
</beans>

        实例:

import com.ycl.dao.IAccountDao;import com.ycl.dao.impl.AccountDaoImpl;import com.ycl.service.IAccountService;import org.springframework.stereotype.Component;/*** 账户的业务层实现类* 曾经的xml配置:*      <bean id="accountService" class="com.ycl.service.impl.AccountServiceImpl"></bean>*/@Componentpublic class AccountServiceImpl implements IAccountService {    private IAccountDao accountDao;    public AccountServiceImpl() {        System.out.println("对象创建了");    }    public void sendAccount() {        accountDao.sendAccount();    }}

import com.ycl.service.IAccountService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
* 模拟一个表现层,用于调用业务层
*/
public class Client {
    /**
     * 获取spring的Ioc核心容器,并根据id获取对象
     * @param args
     */
    public static void main(String[] args) {
        //1.获取核心容器对象
        ApplicationContext  ac = new ClassPathXmlApplicationContext("bean.xml");
        //2.根据id获取bean对象
        IAccountService as = (IAccountService) ac.getBean("accountServiceImpl");
        System.out.println(as);
        //as.sendAccount();
    }
}

    2.用于注入数据:功能与标签一样
        Autowired:
            作用:自动按照类型注入,只要容器中有唯一的一个bean对象类型和要注入的变量类型匹配,就可以注入成功
            如果ioc容器中没有任何bean的类型和要注入的变量类型匹配,则报错
            如果Ioc容器中有多个类型匹配时,会再根据变量名进行匹配,没有则报错
            出现位置:可以是变量上,也可以是方法上
            细节:使用注解注入时,set方法就不是必须的了
        Qualifier:
            作用:在按照类中注入的基础上再按照名称注入,在给类成员注入时不能单独使用,但是在给方法参数注入时可以
            属性:value:用于指定注入bean的id
        Resource:
            作用:直接按照bean的id注入,可以独立使用
            属性:name:用于指定bean的id
        以上三个注入都只能注入其他bean类型的数据,而基本类型和String类型无法使用,集合类型只能通过xml来实现

        Value:
            作用:用于注入基本类型和String类型的数据
            属性:value:用于指定数据的值,可以使用spring中的SpEL(即spring中的el表达式)
            SpEL的写法:${表达式}
    3.用于改变作用范围:与bean标签的scope属性一样
        Scope
            作用:用于指定bean的作用范围
            属性:value:指定范围的取值,常用取值:singleton、prototype

    4.和生命周期相关:与bean标签中的init-method和destroy-methode一样
        PreDestroy:用于指定销毁方法
        PostConstruct:用于指定初始化方法