首页 > 其他分享 >Spring 中的InitializingBean

Spring 中的InitializingBean

时间:2024-08-11 21:58:37浏览次数:15  
标签:初始化 InitializingBean Spring bean property public

   InitializingBean 是 Spring 框架中的一个接口,用于在 Spring 容器中初始化 bean 时执行特定的初始化逻辑。这个接口定义了一个方法 afterPropertiesSet(),当 bean 的所有属性被设置后(即依赖注入完成后),Spring 容器会调用这个方法。通过实现这个接口,你可以在 bean 初始化完成后执行自定义的初始化操作。

InitializingBean 接口概述

  InitializingBean 接口位于 org.springframework.beans.factory 包中,主要用于在 bean 初始化时执行一些自定义的初始化逻辑。接口定义如下:

package org.springframework.beans.factory;

public interface InitializingBean {
    void afterPropertiesSet() throws Exception;
}

使用示例

   以下是一个使用 InitializingBean 接口的简单示例:

1. 引入 Spring 依赖

    在你的项目中引入 Spring 框架的依赖。以下是一个 Maven 项目的示例 pom.xml 配置:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>5.3.20</version>
</dependency>
2. 创建一个实现 InitializingBean 接口的类
import org.springframework.beans.factory.InitializingBean;

public class MyBean implements InitializingBean {
    private String property;

    public void setProperty(String property) {
        this.property = property;
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        // 自定义初始化逻辑
        System.out.println("Bean 初始化完成,属性值为: " + property);
    }
}
3. 配置 Spring 容器

   你可以使用 XML 配置或 Java 配置来定义和初始化 Spring 容器中的 bean。

 使用 XML 配置
<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="myBean" class="com.example.MyBean">
        <property name="property" value="Hello, Spring!"/>
    </bean>
</beans>
  使用 Java 配置
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class AppConfig {
    @Bean
    public MyBean myBean() {
        MyBean myBean = new MyBean();
        myBean.setProperty("Hello, Spring!");
        return myBean;
    }
}
4. 初始化 Spring 容器并获取 bean
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Main {
    public static void main(String[] args) {
        ApplicationContext context = new AnnotationConfigApplicationContext(AppConfig.class);
        MyBean myBean = context.getBean(MyBean.class);
        // 这里可以使用 myBean
    }
}

其他初始化方式

     除了实现 InitializingBean 接口外,Spring 还提供了其他几种方式来执行初始化逻辑:

1. 使用 @PostConstruct 注解

  @PostConstruct 注解可以标注在方法上,表示在依赖注入完成后需要执行的方法。这个注解是 Java EE 的一部分,Spring 也支持它。

import javax.annotation.PostConstruct;

public class MyBean {
    private String property;

    public void setProperty(String property) {
        this.property = property;
    }

    @PostConstruct
    public void init() {
        // 自定义初始化逻辑
        System.out.println("Bean 初始化完成,属性值为: " + property);
    }
}
2. 使用 init-method 属性

    在 XML 配置中,你可以使用 init-method 属性指定一个方法作为初始化方法。

<bean id="myBean" class="com.example.MyBean" init-method="init">
    <property name="property" value="Hello, Spring!"/>
</bean>
public class MyBean {
    private String property;

    public void setProperty(String property) {
        this.property = property;
    }

    public void init() {
        // 自定义初始化逻辑
        System.out.println("Bean 初始化完成,属性值为: " + property);
    }
}

结论

  • InitializingBean 接口:通过实现 InitializingBean 接口,你可以在 Spring 容器中初始化 bean 时执行自定义的初始化逻辑。
  • 其他初始化方式:除了实现 InitializingBean 接口外,你还可以使用 @PostConstruct 注解或 XML 配置中的 init-method 属性来执行初始化逻辑。
  • 示例代码:示例代码展示了如何使用 InitializingBean 接口以及其他初始化方式来执行自定义初始化逻辑。

     通过这些方式,你可以在 Spring 容器初始化 bean 时执行必要的初始化操作,确保 bean 在使用前已经被正确配置和初始化。

标签:初始化,InitializingBean,Spring,bean,property,public
From: https://blog.csdn.net/u014745465/article/details/141024138

相关文章

  • springboot+vue体检套餐定制系统的设计与实现【程序+论文+开题】-计算机毕业设计
    系统程序文件列表开题报告内容研究背景随着人们健康意识的不断提升,定期体检已成为现代人维护健康、预防疾病的重要手段。然而,市场上现有的体检套餐往往存在一刀切的问题,难以满足不同年龄、性别、职业及健康状况人群的个性化需求。此外,体检预约流程繁琐、体检结果解读困难等......
  • 计算机毕业设计 校园失物招领网站 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解
    ......
  • SpringBoot整合支付宝沙箱支付流程(干货·精简版)Java毕业设计亮点 通俗易懂
    ......
  • spring-boot启动
    publicConfigurableApplicationContextrun(String...args){StopWatchstopWatch=newStopWatch();stopWatch.start();//创建引导上下文DefaultBootstrapContextbootstrapContext=createBootstrapContext();ConfigurableApplicationContextcon......
  • SpringMVC - 初识
    1.简介SpringMVC是一个创建Web应用程序的框架,它是遵循Model-View-Controller的设计模式。SpringMVC通过DispatcherServlet来接收请求,然后对应对具体的controllers,models和views.2.一个HelloWorld事例1.添加maven依赖<dependency><groupId>org.springframework<......
  • SpringCloud天机学堂:我的课表(三)
    SpringCloud天机学堂:我的课表(三)文章目录SpringCloud天机学堂:我的课表(三)1、添加课程到课表2、分页查询课表3、查询正在学习的课程1、添加课程到课表首先,用户支付完成后,需要将购买的课程加入课表:而支付成功后,交易服务会基于MQ通知的方式,通知学习服务来执行加入......
  • Consider defining a bean of type ‘org.springframework.cloud.client.loadbalancer
    1、bug报错问题:项目启动失败***************************APPLICATIONFAILEDTOSTART***************************Description:Parameter1ofconstructorincom.tianji.learning.controller.InteractionQuestionAdminControllerrequiredabeanoftype'org......
  • spring使用validation参数及全局异常检测
    1.validation参数验证工具1.1.validation-api技术链validation-api是一个Java的数据校验规范,它定义了一套用于校验JavaBean的API。它是JSR303规范的一部分,也被称为BeanValidation。validation-api提供了一系列的注解,用于在Java类的字段、方法参数和方法返回值上添加校验规......
  • SpringBoot整合ElasticSearch
    文章目录SpringBoot整合ES实现ElasticsearchRepository使用ElasticsearchRestTemplate索引操作文档操作SpringBoot整合ES官方文档:https://docs.spring.io/spring-data/elasticsearch/docs/current/reference/html/#new-features.4-4-0版本选择Elasticsearch7.......
  • 基于Springboot+Vue的网上蛋糕销售系统(含源码数据库)
    1.开发环境开发系统:Windows10/11架构模式:MVC/前后端分离JDK版本:JavaJDK1.8开发工具:IDEA数据库版本:mysql5.7或8.0数据库可视化工具:navicat服务器:SpringBoot自带apachetomcat主要技术:Java,Springboot,mybatis,mysql,vue2.视频演示地址3.功能这个系......