溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring bean有哪幾種注入方式

發(fā)布時(shí)間:2021-07-19 00:46:44 來源:億速云 閱讀:210 作者:chen 欄目:開發(fā)技術(shù)

這篇文章主要講解了“Spring bean有哪幾種注入方式”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Spring bean有哪幾種注入方式”吧!

目錄
  • 一、Set方式注入

    • pojo層:

    • 1.xml 文件

    • test測試

  • 二、構(gòu)造函數(shù)方式注入

    • pojo層

    • 2.xml文件

    • test測試

  • 三、注解注入

    • pojo層

    • 3.xml文件

    • test測試

  • 四、JavaConfig 方式注入

    • pojo層

    • JavaConfig 類

    • xml文件 掃描包

    • 測試:

  • 五、Service層注入詳解

    • service

    • serviceImpl

    • xml配置文件

  • 總結(jié)

    一、Set方式注入

    pojo層:

    /**
     * @Author: crush
     * @Date: 2021-06-17 16:57
     * version 1.0
     * xml 配置注入版本  set 方式
     */
    public class Student1 {
        public String name;
        public String school;
        public void setName(String name) {
            this.name = name;
        }
        public void setSchool(String school) {
            this.school = school;
        }
        @Override
        public String toString() {
            return "Student1{" +
                    "name='" + name + '\'' +
                    ", school='" + school + '\'' +
                    '}';
        }
    }

    1.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">
        <!--set方式注入
            id是注入bean中的名字
            class 是全限定類名
            property 是按照set方式注入
        -->
        <bean id="student1" class="com.crush.pojo.Student1">
            <property name="name" value="wyh2"/>
            <property name="school" value="hngy1"/>
        </bean>
    </beans>

    test測試

     @Test
        public void student1(){
            ApplicationContext context = new ClassPathXmlApplicationContext("student1.xml");
            Student1 student1 = context.getBean("student1", Student1.class);
            System.out.println(student1);
        }

    二、構(gòu)造函數(shù)方式注入

    pojo層

    /**
     * @Author: crush
     * @Date: 2021-06-17 17:02
     * version 1.0
     * xml 配置 構(gòu)造函數(shù)方式注入
     */
    public class Student2 {
        private String name;
        private String school;
        public Student2(String name, String school) {
            this.name = name;
            this.school = school;
        }
        @Override
        public String toString() {
            return "Student2{" +
                    "name='" + name + '\'' +
                    ", school='" + school + '\'' +
                    '}';
        }
    }

    2.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">
        <!--set方式注入
            id是注入bean中的名字
            class 是全限定類名
            constructor 是按照構(gòu)造方式注入
            index 是按照成員變量在構(gòu)造函數(shù)中的參數(shù)的第幾個(gè)
            name 表示成員變量名
            type 表示類型
            value 表示值
            ref 表示引用 可引用另外一個(gè)注入到Spring的中的值
        -->
        <bean id="student2" class="com.crush.pojo.Student2">
            <constructor-arg index="0"  name="name" type="java.lang.String" value="wyh3"/>
            <constructor-arg name="school" value="hngy2"/>
        </bean>
    </beans>

    test測試

       @Test
        public void student2(){
            ApplicationContext context = new ClassPathXmlApplicationContext("student2.xml");
            Student2 student2 = context.getBean("student2", Student2.class);
            System.out.println(student2);
        }

    三、注解注入

    pojo層

    /**
     * @Author: crush
     * @Date: 2021-06-17 17:08
     * version 1.0
     */
    @Component
    public class Student3 {
        @Value("wyh4")
        private String name;
        @Value("hngy3")
        private String school;
        @Override
        public String toString() {
            return "Student3{" +
                    "name='" + name + '\'' +
                    ", school='" + school + '\'' +
                    '}';
        }
    }

    3.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 https://www.springframework.org/schema/context/spring-context.xsd">
    
        <!--注解方式注入
            需要掃描注解在的包 注解才會(huì)生效
        -->
        <context:component-scan base-package="com.crush.pojo"/>
    </beans>

    test測試

       @Test
        public void student3(){
            ApplicationContext context = new ClassPathXmlApplicationContext("student3.xml");
            Student3 student3 = context.getBean("student3", Student3.class);
            System.out.println(student3);
        }

    四、JavaConfig 方式注入

    pojo層

    /**
     * @Author: crush
     * @Date: 2021-06-17 17:16
     * version 1.0
     * JavaConfig 配置
     */
    public class Student4 {
        @Value("wyh5")
        private String name;
        @Value("hngy4")
        private String school;
        @Override
        public String toString() {
            return "Student4{" +
                    "name='" + name + '\'' +
                    ", school='" + school + '\'' +
                    '}';
        }
    }

    JavaConfig 類

    @Configuration
    public class Student4Config {
        @Bean
        public Student4 student4(){
            return new Student4();
        }
    }

    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 https://www.springframework.org/schema/context/spring-context.xsd">
        <context:component-scan base-package="com.crush.config"/>
    </beans>

    測試:

    @Test
        public void student4(){
            ApplicationContext context = new ClassPathXmlApplicationContext("student4.xml");
            Student4 student4 = context.getBean("student4", Student4.class);
            System.out.println(student4);
        }

    五、Service層注入詳解

    service

    /**
     * @Author: crush
     * @Date: 2021-06-17 17:27
     * version 1.0
     * xml 配置
     */
    public interface StudentService1 {
        void test();
    }

    serviceImpl

    /**
     * @Author: crush
     * @Date: 2021-06-17 17:29
     * version 1.0
     * xml 配置
     */
    public class StudentService1Impl implements StudentService1{
        @Override
        public void test() {
            System.out.println("===StudentDao1Impl===");
        }
    }

    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 id="studentService1" class="com.crush.dao.StudentService1" />
    </beans>

    感謝各位的閱讀,以上就是“Spring bean有哪幾種注入方式”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)Spring bean有哪幾種注入方式這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

    向AI問一下細(xì)節(jié)

    免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI