【Java】【Spring】Ioc-基于XML管理bean-bean生命周期

文章讲述了如何在Spring框架中使用LifeCycle类,通过XML配置文件定义bean,设置属性并调用初始化和销毁方法。测试类展示了从XML加载bean并完成操作后关闭ApplicationContext的过程。
摘要由CSDN通过智能技术生成

【】【】
3和5偷懒没有做。

LifeCycle类:

package com.kiong.spring6;

public class LifeCycle {
    private String name;

    public LifeCycle(String name) {
        this.name = name;
    }

    public LifeCycle() {
        System.out.println("1.创建bean对象,调用无参构造");
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        System.out.println("2.给bean对象设置属性值");
        this.name = name;
    }
    //初始化的方法
    public void initMethod(){
        System.out.println("4.初始化bean对象,调用指定的初始化方法");
    }

    //销毁的方法
    public void destroyMethod(){
        System.out.println("7.销毁bean对象,调用指定的销毁方法");
    }

}

bean-life.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="lifeCycle" class="com.kiong.spring6.LifeCycle"
          scope="singleton" init-method="initMethod" destroy-method="destroyMethod">
        <property name="name" value="Steve"></property>
    </bean>
</beans>

TestLifeCycle类:

package com.kiong.spring6;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class TestLifeCycle {
    public static void main(String[] args) {
        ClassPathXmlApplicationContext context =
                new ClassPathXmlApplicationContext("bean-life.xml");
        LifeCycle lifeCycle = context.getBean("lifeCycle",LifeCycle.class);
        System.out.println("6.完成创建bean对象了,可以使用了");
        //销毁
        context.close();

    }

}

执行结果:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值