Spring5框架——IOC容器

Spring概述:

1.Spring是轻量级的开源的JavaEE框架

2.Spring可以解决企业应用开发的复杂性

3.Spring有两个核心部分:IOC和Aop

        (1)IOC:控制反转,把创建对象过程交给Spring进行管理

        (2)Aop:面向切面,不修改源代码进行功能增强

4.Spring的特点:

        (1)方便耦合,简化开发

        (2)Aop编程支持

        (3)方便程序测试

        (4)方便和其他框架进行整合

        (5)方便进行事务操作

        (6)降低API开发难度

Spring5入门案例:

1、下载Spring5

2、打开idea工具,创建普通Java工程

3、导入Spring5相关jar包

4、创建普通类,在这个类创建普通方法

public class User {
    public void add(){
        System.out.println("add.....");
    }
}

5、创建Spring配置文件,在配置文件配置创建的对象

        (1)Spring配置文件使用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">

    <!--配置User对象创建-->
    <bean id="user" class="test1.User"></bean>
</beans>

6、进行测试代码编写

public class TestSpring5 {

    @Test
    public void testAdd(){
        //1.加载Spring配置文件
        ApplicationContext context=new ClassPathXmlApplicationContext("bean1.xml");

        //2.获取配置创建的对象
        User user=context.getBean("user", User.class);

        System.out.println(user);
        user.add();
    }
}

IOC容器:

IOC概念:

(1)控制反转,把对象创建和对象之间的调用过程,交给Spring进行管理

(2)使用IOC目的:为了耦合度降低

(3)做入门案例就是IOC实现

IOC底层原理:

xml解析、工厂模式、反射

原始方式:(耦合度太高)                                                                                

class UserService{                                                                        class UserDao{

        execcute(){                                                                                  add(){

        UserDao dao=new UserDao();                                                        ......

        dao.add();                                                                                     }

        }                                                                                                }

}

工厂模式:(目的:耦合度降低最低限度)

class UserService{                                                                          class UserDao{

        execute(){                                                                                        add(){

                UserDao dao=UserFaootry.getDao();                                          ......

                dao.add();                                                                                 }

        }                                                                                                }

}

class UserFactory{

        public static UserDao getDao(){

                return new UserDao();

        }

}

IOC过程:

第一步:xml配置文件,配置创建的对象

<bean id="dao" class="test.UserDao"></bean>

第二部:有service类和dao类,创建工厂类

class UserFactory{
    public static UserDao getDao(){
        String classValue=class属性值; //xml解析
        Class clazz=Class.forName(classValue);  //通过反射创建对象
        return (UserDao)clazz.newInstance();
    }
}

目的:进一步降低耦合度

IOC接口:

1、IOC思想基于IOC容器完成,IOC容器底层就是对象工厂

2、Spring提供IOC容器实现两种方式:(两个接口)

   (1)BeanFactory:IOC容器基本实现,是Spring内部的使用接口,不提供开发人员进行使用

        *加载配置文件时不会创建对象,在获取对象(使用)采取创建对象

   (2)ApplicationContext:BeanFactory接口的子接口,提供更多更强大的功能,一般由开发人员进行使用

        *加载配置文件时就会把在配置文件对象进行创建

3、ApplicationContext接口有实现类

IOC操作Bean管理:

1、什么是Bean管理

     (1)Bean管理指的是两个操作

     (2)Spring创建对象

     (3)Spring注入对象

2、Bean管理操作的两种方式:

     (1)基于xml配置文件方式实现

     (2)基于注解方式实现

基于xml方式:

1、基于xml方式创建对象

<!--配置User对象创建-->
<bean id="user" class="test1.User"></bean>

(1)在spring配置文件中,使用bean标签,标签里面添加对应属性,就可以实现对象创建

(2)在bean标签有很多属性,介绍常用属性

        *id属性:唯一标识                *class属性:类全路径(包类路径)

(3)创建对象时候,默认是执行无参数构造方法完成对象创建

2、基于xml方式注入属性

3、DI:依赖注入,就是注入属性

     第一种方式:使用set方式进行注入

        (1)创建类,定义属性和对应的set方法

/*
    演示使用set方法进行注入属性
 */
public class Book {
    //创建属性
    private String bname;
    private String bauthor;

    //创建属性对应的set方法set方法
    public void setBname(String bname) {
        this.bname = bname;
    }

    public void setBauthor(String bauthor) {
        this.bauthor = bauthor;
    }


    public void testDemo(){
        System.out.println(bname+"::"+bauthor);
    }
}

          (2)在spring配置文件配置对象创建,配置属性注入

 <!--set方法注入属性-->
    <bean id="book" class="test1.Book">
        <!--使用property完成属性注入
            name:类里面属性名称
            value:向属性注入的值
        -->
        <property name="bname" value="修仙"></property>
        <property name="bauthor" value="小王"></property>
    </bean>

测试:

public class TestSpring5 {

    @Test
    public void testBook1(){
        //1.加载Spring配置文件
        ApplicationContext context=new ClassPathXmlApplicationContext("bean1.xml");

        //2.获取配置创建的对象
        Book book=context.getBean("book", Book.class);

        System.out.println(book);
        book.testDemo();
    }
}

第二种方式:使用有参数构造进行注入

        (1)创建类,定义属性,创建属性对应有参数构造方法

/*
使用有参数构造注入
 */
public class Orders {
    //属性
    private String oname;
    private String address;

    //创建有参数的构造
    public Orders(String oname, String address) {
        this.oname = oname;
        this.address = address;
    }
}

        (2)在spring配置文件种进行配置

<!--有参数构造注入属性-->
    <bean id="orders" class="test1.testdemo.Orders">
        <constructor-arg name="oname" value="abc"></constructor-arg>
        <constructor-arg name="address" value="China"></constructor-arg>
    </bean>

 测试:

 @Test
    public void testOrders(){
        //1.加载Spring配置文件
        ApplicationContext context=new ClassPathXmlApplicationContext("bean1.xml");

        //2.获取配置创建的对象
        Orders orders=context.getBean("orders", Orders.class);

        System.out.println(orders);
        orders.orderTest();
    }

4、p名称空间注入:

   (1)使用p名称空间注入,可以简化基于xml配置方式

        第一步:添加p名称空间在配置文件中

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

         第二步:进行属性注入,在bean标签里面进行操作

    <!--set方法注入属性-->
    <bean id="book" class="test1.Book" p:bname="全职高手" p:bauthor="蝴蝶蓝"></bean>

xml注入其他类型属性:

1、字面量

   (1)null值

<!--null值-->
<property name="address">
    <null/>
</property>

   (2)属性值包含特殊符号

<!--属性值包含特殊符号
    1.把<>进行转义 &lt; &gt;
    2.把带特殊符号内容写到CDATA
-->
<property name="address">
    <value><![CDATA[<<北京>>]]]></value>
</property>

2、注入属性-外部bean

   (1)创建两个类service类和dao类

   (2)在service调用dao里面的方法

   (3)在spring配置文件中进行配置

public class UerService {

    //创建UserDao类型属性,生成set方法
    private UserDao userDao;
    public void setUserDao(UserDao userDao){
        this.userDao=userDao;
    }

    public void add(){
        System.out.println("Service add.......");
        userDao.update();
    }
}
<?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:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--service和dao对象创建-->
    <bean id="userService" class="test1.service.UerService">
        <!--注入userDao对象
            name属性值:类里面属性名称
            ref属性:创建userDao对象bean标签id值
        -->
        <property name="userDao" ref="userDaoImpl"></property>
    </bean>
    <bean id="userDaoImpl" class="test1.dao.UserDaoImpl"></bean>
</beans>

3、注入属性-内部bean

   (1)一对多关系:部门和员工

        一个部门有多个员工,一个员工属于一个部门,部门是一,员工是多

   (2)在实体类之间表示一对多关系,员工表示所属部门,使用对象属性类型进行表示

//部门类
public class Dept {
    private String dname;
    public void setDname(String dname){
        this.dname=dname;
    }
}
//员工类
public class Emp {
    private String ename;
    private String gender;

    //员工属于某一个部门,使用对象形式表示
    private Dept dept;

    public void setEname(String ename) {
        this.ename = ename;
    }

    public void setGender(String gender) {
        this.gender = gender;
    }

    public void setDept(Dept dept) {
        this.dept = dept;
    }
}

   (3)在spring配置文件中进行配置

    <!--内部bean-->
    <bean id="emp" class="test1.bean.Emp">
        <!--设置两个普通属性-->
        <property name="ename" value="lucy"></property>
        <property name="gender" value="女"></property>

        <!--设置对象类型属性-->
        <property name="dept">
            <bean id="dempt" class="test1.bean.Dept">
                <property name="dname" value="安保部"></property>
            </bean>
        </property>
    </bean>

4、注入属性-级联赋值

   (1)第一种写法

 <!--级联赋值-->
    <bean id="emp" class="test1.bean.Emp">
        <!--设置两个普通属性-->
        <property name="ename" value="lucy"></property>
        <property name="gender" value="女"></property>

        <!--级联赋值-->
        <property name="dept" ref="dept"></property>
    </bean>
    <bean id="dept" class="test1.bean.Dept">
        <property name="dname" value="财务部"></property>
    </bean>

   (2)第二种写法

//员工属于某一个部门,使用对象形式表示
    private Dept dept;

    //生成dept的get方法
    public Dept getDept() {
        return dept;
    }

    public void setDept(Dept dept) {
        this.dept = dept;
    }
 <!--级联赋值-->
    <bean id="emp" class="test1.bean.Emp">
        <!--设置两个普通属性-->
        <property name="ename" value="lucy"></property>
        <property name="gender" value="女"></property>

        <!--级联赋值-->
        <property name="dept" ref="dept"></property>
        <property name="dept.dname" value="技术部"></property>
    </bean>
    <bean id="dept" class="test1.bean.Dept">
        <property name="dname" value="财务部"></property>
    </bean>

xml注入集合属性:

1、注入数组类型属性

2、注入List集合类型属性

3、注入Map集合类型属性

   (1)创建类,定义数组、list、map、set类型属性,生成对应的set方法

public class Stu {
    //1、数组类型属性
    private String[] courses;

    //2、List集合类型属性
    private List<String> list;

    //3、Map集合类型属性
    private Map<String,String> maps;

    //4、set集合类型属性
    private Set<String> sets;

    public void setCourses(String[] courses){
        this.courses=courses;
    }

    public void setList(List<String> list) {
        this.list = list;
    }

    public void setMaps(Map<String, String> maps) {
        this.maps = maps;
    }

        public void setSets(Set<String> sets) {
        this.sets = sets;
    }

    public void test(){
        System.out.println(list);
        System.out.println(maps);
        System.out.println(sets);
    }
}

   (2)在spring配置文件进行配置

    <!--结合类型属性注入-->
    <bean id="stu" class="test2.collectiontype.Stu">
        <property name="courses">
            <array>
                <value>java课程</value>
                <value>spring课程</value>
            </array>
        </property>

        <!--list类型属性注入-->
        <property name="list">
            <list>
                <value>王一</value>
                <value>王二</value>
            </list>
        </property>
        
        <!--map类型属性注入-->
        <property name="maps">
            <map>
                <entry key="JAVA" value="java"></entry>
                <entry key="PHP" value="php"></entry>
            </map>
        </property>
        
        <!--set类型属性注入-->
        <property name="sets">
            <set>
                <value>MySQL</value>
                <value>Redis</value>
            </set>
        </property>
        
    </bean>
</beans>

4、在集合里面设置值对象类型值

    <!--结合类型属性注入-->
    <bean id="stu" class="test2.collectiontype.Stu">
        <!--注入list集合类型,值是对象-->
        <property name="courseList">
            <list>
                <ref bean="course1"></ref>
                <ref bean="course2"></ref>
            </list>
        </property>
    </bean>


    <!--创建多个course对象-->
    <bean id="course1" class="test2.collectiontype.Course">
        <property name="cname" value="Spring框架"></property>

    </bean>
    <bean id="course2" class="test2.collectiontype.Course">
        <property name="cname" value="MyBatis框架"></property>
    </bean>

//课程类
public class Course {
    private String cname;

    public void setCname(String cname) {
        this.cname = cname;
    }

    @Override
    public String toString() {
        return "Course{" +
                "cname='" + cname + '\'' +
                '}';
    }
}

5、把集合注入部分提取出来

   (1)在spring配置文件中引入名称空间

<?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:p="http://www.springframework.org/schema/p"
       xmlns:util="http://www.springframework.org/schema/util"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">

   (2)使用util标签完成list集合注入提取 

    <!--1 提取list集合类型属性注入-->
    <util:list id="bookList">
        <value>全职高手</value>
        <value>修仙</value>
        <value>史莱姆</value>
    </util:list>

    <!--2 提取list集合类型属性注入使用-->
    <bean id="book" class="test2.collectiontype.Book">
        <property name="list" ref="bookList"></property>
    </bean>

FactoryBean:

1、Spring有两种类型bean,一种是普通bean,另一种是工厂bean(FactoryBean)

2、普通bean:在配置文件中定义bean类型就是返回类型

3、工厂bean:在配置文件定义bean类型可以和返回类型不一样

   第一步:创建类,让这个类作为工厂bean,实现接口FactoryBean

   第二步:实现接口里面的方法,在实现的方法中定义返回bean类型

import org.springframework.beans.factory.FactoryBean;
import test2.collectiontype.Course;

public class MyBean implements FactoryBean<Course> {

    @Override
    public Course getObject() throws Exception {
        Course course=new Course();
        course.setCname("abc");
        return course;
    }

    @Override
    public Class<?> getObjectType() {
        return null;
    }

    @Override
    public boolean isSingleton() {
        return false;
    }
}
    <bean id="myBean" class="test2.factorybean.MyBean">
    </bean>
   //测试
    @Test
    public void test3(){
        ApplicationContext context=
                new ClassPathXmlApplicationContext("bean7.xml");
        MyBean myBean=context.getBean("myBean",MyBean.class);
        System.out.println(myBean);;
    }

bean作用域:

1、在Spring里面,设置创建bean实例是单实例还是多实例

2、在Spring里面,默认情况下,bean是单实例对象

    @Test
    public void testCollection2(){
        ApplicationContext context=
                new ClassPathXmlApplicationContext("bean6.xml");
        Book book1=context.getBean("book",Book.class);
        Book book2=context.getBean("book",Book.class);

        System.out.println(book1);
        System.out.println(book2);
    }

//输出相同:test2.collectiontype.Book@710f4dc7
//          test2.collectiontype.Book@710f4dc7

3、设置单实例或多实例

   (1)在spring配置文件bean标签里面有属性用于设置单实例还是多实例

   (2)scope属性值

          第一个值:默认值,singleton,表示是单实例对象

          第二个值:prototype,表示是多实例对象

    <!--2 提取list集合类型属性注入使用-->
    <bean id="book" class="test2.collectiontype.Book" scope="prototype">
        <property name="list" ref="bookList"></property>
    </bean>
    @Test
    public void testCollection2(){
        ApplicationContext context=
                new ClassPathXmlApplicationContext("bean6.xml");
        Book book1=context.getBean("book",Book.class);
        Book book2=context.getBean("book",Book.class);

        System.out.println(book1);
        System.out.println(book2);
    }

//输出不同:test2.collectiontype.Book@1ff4931d
//          test2.collectiontype.Book@65e98b1c

   (3)singleton和prototype区别

           第一:singleton单实例,prrotootype多实例

           第二:设置scope值是singleton时候,加载spring配置文件时候就会创建单实例对象

                      设置scope值是prototype时候,不是在加载spring配置文件时创建对象,在调用getBean方法时创建多实例对象

bean生命周期:

1、生命周期

   (1)从对象创建到对象销毁的过程

2、bean生命周期

   (1)通过构造器创建bean实例(无参数构造)

   (2)为bean的属性设置值和对其他bean引用(调用set方法)

   (3)调用bean的初始化的方法(需要进行配置初始化的方法)

   (4)bean可以使用了(对象获取到了)

   (5)当容器关闭时候,调用bean的销毁的方法(需要进行配置销毁的方法)

3、演示bean生命周期

public class Orders {

    //无参数构造
    public Orders(){
        System.out.println("第一步 执行无参数构造创建bean实例");
    }

    private String oname;
    public void setOname(String oname){
        this.oname=oname;
        System.out.println("第二步 调用set方法设置属性值");
    }

    //创建执行的初始化的方法
    public void initMethod(){
        System.out.println("第三步 执行初始化的方法");
    }

    //创建执行的销毁的方法
    public void destroyMethodd(){
        System.out.println("第五步 执行销毁的方法");
    }
}
<bean id="orders" class="test3.Orders" init-method="initMethod" destroy-method="destroyMethodd">
    <property name="oname" value="phone"></property>
</bean>
//测试
    @Test
    public void testBean3(){
        ClassPathXmlApplicationContext context=
                new ClassPathXmlApplicationContext("bean9.xml");
        Orders orders=context.getBean("orders",Orders.class);
        System.out.println("第四步 获取创建bean实例对象");
        System.out.println(orders);

        //手动让bean实例销毁
        context.close();
    }

   第一步:执行无参数构造创建bean实例

   第二步:调用set方法设置属性值

   第三步:执行初始化的方法

   第四步:获取创建bean实例对象

   第五步:执行销毁的方法

4、bean的后置处理器,bean生命周期有七步操作

   (1)通过构造器创建bean实例(无参数构造)

   (2)为bean的属性设置值和对其他bean引用(调用set方法)

   (3)把bean实例传递bean后置处理器的方法:postProcessBeforeInitialization

   (4)调用bean的初始化的方法(需要进行配置初始化的方法)

   (5)把bean实例传递bean后置处理器的方法:postProcessAfterInitialization

   (6)bean可以使用了(对象获取到了)

   (7)当容器关闭时候,调用bean的销毁的方法(需要进行配置销毁的方法)

5、演示添加后置处理器效果

   (1)创建类,实现接口BeanPostProcessor,创建后置处理器

public class MyBeanPost implements BeanPostProcessor {

    public Object postProcessBeforeInitialization(Object bean,String beanName) throws BeansException{
        System.out.println("在初始化之前执行的方法");
        return bean;
    }

    public Object postProcessAfterInitialization(Object bean,String beanName) throws BeansException{
        System.out.println("在初始化之后执行的方法");
        return bean;
    }
}
    <!--配置后置处理器-->
    <bean id="myBeanPost" class="test3.MyBeanPost"></bean>
    @Test
    public void testBean3(){
        ClassPathXmlApplicationContext context=
                new ClassPathXmlApplicationContext("bean9.xml");
        Orders orders=context.getBean("orders",Orders.class);
        System.out.println("第四步 获取创建bean实例对象");
        System.out.println(orders);

        //手动让bean实例销毁
        context.close();
    }


//输出结果:
//第一步 执行无参数构造创建bean实例
//第二步 调用set方法设置属性值
//在初始化之前执行的方法
//第三步 执行初始化的方法
//在初始化之后执行的方法
//第四步 获取创建bean实例对象
//test3.Orders@397fbdb
//第五步 执行销毁的方法

xml自动装配:

1、什么是自动装配

   (1)根据指定装配规则(属性名称或属性类型),Spring自动将匹配的属性值进行注入

2、演示自动装配过程

   (1)根据属性名称自动注入

    <!--实现自动装配
    bean标签属性autowire,配置自动装配
    autowire属性常用两个值:
        byName根据属性名称注入,注入bean的id值和类属性名称一致
        byType根据属性类型注入
    -->
    <bean id="emp" class="autowire.Emp" autowire="byName">
        <!--<property name="dept" ref="dept"></property>-->
    </bean>
    <bean id="dept" class="autowire.Dept"></bean>

   (2)根据属性类型自动注入

    <!--实现自动装配
    bean标签属性autowire,配置自动装配
    autowire属性常用两个值:
        byName根据属性名称注入,注入bean的id值和类属性名称一致
        byType根据属性类型注入
    -->
    <bean id="emp" class="autowire.Emp" autowire="byType">
        <!--<property name="dept" ref="dept"></property>-->
    </bean>
    <bean id="dept" class="autowire.Dept"></bean>
public class Emp {
    private  Dept dept;

    public void setDept(Dept dept) {
        this.dept = dept;
    }

    @Override
    public String toString() {
        return "Emp{" +
                "dept=" + dept +
                '}';
    }

    public void test(){
        System.out.println(dept);
    }
}


public class Dept {
    @Override
    public String toString() {
        return "Dept{}";
    }
}

外部属性文件:

1、直接配置数据库信息

   (1)配置德鲁伊连接池

   (2)引入德鲁伊连接池依赖jar包

    <!--直接配置连接池-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mydql://localhost:3306/userDb"></property>
        <property name="username" value=""></property>
        <property name="password" value=""></property>
    </bean>

2、引入外部属性文件配置数据连接池

  (1)创建外部属性文件,properties格式文件,写数据库信息

prop.driverClass=com.mysql.jdbc.Driver
prop.url=jdbc:mysql://localhost:3306/userDb
prop.userName=root
prop.password=root

   (2)把外部properties属性文件引入到spring配置文件中 

   *引入context名称空间

<?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:p="http://www.springframework.org/schema/p"
       xmlns:util="http://www.springframework.org/schema/util"
       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/util http://www.springframework.org/schema/util/spring-util.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

*在spring配置文件使用标签引入外部属性文件

    <!--引入外部属性文件-->
    <context:property-placeholder location="classpath:jdbc.properties"/>

    <!--直接配置连接池-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${prop.driverClass}"></property>
        <property name="url" value="${prop.url}"></property>
        <property name="username" value="${prop.userName}"></property>
        <property name="password" value="${prop.paassword}"></property>
    </bean>


基于注解方式:

1、什么是注解

   (1)注解是代码特殊标记,格式:@注解名称(属性名称=属性值,属性名称=属性值)

   (2)使用注解,注解作用在类上面,方法上面,属性上面

   (3)使用注解的目的:简化xml配置

2、Spring针对Bean管理中创建对象提供注解

   (1)@Component

   (2)@Service

   (3)@Controller

   (4)@Repository

   *上面四个注解功能是一样的,都可以用来创建bean实例

3、基于注解方式实现对象创建

   第一步:引入aop依赖

   第一步:开启组件扫描

      <!--开启组件扫描
        1、如果扫描多个包,多个包使用逗号隔开
        2、扫描包的上层目录
      -->
    <context:component-scan base-package="test3,test2"></context:component-scan>

   第三步:创建类,在类上面添加创建对象注解

//在注解里面value属性值可以省略不写,默认值是类名称,首写字母小写,UserService-userService
//@controller
//@Repository
@Component(value = "userService")   //<bean id="userService" class="..">类似
public class UserService {
    public void add(){
        System.out.println("service add.......");
    }
}
   //测试
    @Test
    public void testService(){
        ApplicationContext context
                =new ClassPathXmlApplicationContext("bean12.xml");
        UserService userService=context.getBean("userServicce",UserService.class);
        System.out.println(userService);
        userService.add();
    }

4、开启组件扫描细节配置

    <!--示例1
    use-default-filters="false" 表示现在不使用默认filter,自己配置filter
    context:include-filter  设置扫描哪些内容
    -->
    <context:component-scan base-package="test4" use-default-filters="false">
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

    <!--示例2
        下面配置扫描包所有的内容
        context:exclude-filter:设置哪些内容不进行扫描
   -->
    <context:component-scan base-package="test4" >
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

5、基于注解方式实现属性注入

   (1)@AutoWired:根据属性类型进行自动装配

          第一步:把service和dao对象创建,在service和dao类添加创建对象注解

          第二步:在service注入dao对象,在service类添加

@Service
public class UserService {
    //定义dao类型属性
    //不需要添加set方法
    //添加注入属性注解
    @Autowired //根据类型进行注入
    private UserDao userDao;
    public void add(){
        System.out.println("service add.......");
        userDao.add();
    }
}

   (2)@Qualifier:根据属性名称进行注入

        这个@Qualifier注解的使用,和上面@Autowired一起使用

    //定义dao类型属性
    //不需要添加set方法
    //添加注入属性注解
    @Autowired
    @Qualifier(value = "userDaoImpl1")
    private UserDao userDao;

   (3)@Resource:可以根据类型注入,可任意根据名称注入

    //@Resource //根据类型进行注入
    @Resource(name="userDaoImpl1")//根据名称进行注入
    private UserDao userDao;

   (4)@Value:注入普通类型属性

    @Value(value = "abc")
    private String name;

6、完全注解开发

   (1)创建配置类,替代xml配置文件

@Configuration//作为配置类,替代xml配置文件
@ComponentScan(basePackages = {"test1"})
public class SpringConfig {
}

   (2)编写配置类

    @Test
    public void testService2(){
        //加载配置类
        ApplicationContext context
                =new AnnotationConfigApplicationContext(SpringConfig.class);
        UserService userService=context.getBean("userService",UserService.class);
        System.out.println(userService);
        userService.add();
    }
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值