Spring Beans的魔法门:解密多种配置方式【beans 四】

欢迎来到我的博客,代码的世界里,每一行都是一个故事


在这里插入图片描述

Spring Beans的魔法门:解密多种配置方式【beans 四】

    • 前言
    • XML配置方式
      • 1. 声明和配置Bean:
      • 2. 构造函数注入:
      • 3. 导入其他配置文件:
    • java注解方式
      • 1. 使用`@Component`声明Bean:
      • 2. 使用更具体的注解(`@Service`、`@Repository`):
      • 3. 使用`@Autowired`进行依赖注入:
    • JavaConfig配置方式
      • 1. 使用`@Configuration`注解声明配置类:
      • 2. 使用`@Bean`注解定义Bean:
      • 3. Bean之间的依赖:
      • 4. 使用`@Autowired`注解进行依赖注入:
    • 条件化的配置
      • 示例:
      • 条件类的实现:
    • properties文件配置
      • 1. 创建属性文件:
      • 2. 使用`@PropertySource`注解加载属性文件:
      • 3. 使用属性值:
      • 注意事项:
    • 使用Spring boot简化配置
      • 1. 自动化配置(Auto-Configuration):
      • 2. 默认属性值:
      • 3. 自动扫描和组件注解:
      • 4. 嵌入式Web服务器:
      • 5. 依赖管理和Starter:
      • 6. 自定义属性:
      • 总结:
    • 动态bean的配置
      • 1. 创建配置类:
      • 2. 创建另一个配置类:
      • 3. 主配置类中使用`@Import`导入其他配置类:
      • 4. 使用导入的配置类中的Bean:

前言

在Spring的世界中,Beans是构建应用程序的基础。而Beans的配置方式则是我们进入这个魔法门的通行证。传统的XML配置、简洁的Java注解、灵活的JavaConfig方式,每一种都有其独特的魅力。在这篇文章中,我们将带你探寻Spring Beans的配置之旅,从而让你更加游刃有余地使用这个强大的框架。

XML配置方式

在Spring中,XML配置方式是通过XML文件来声明和配置Bean的,包括属性注入和构造函数注入。以下是一个简单的示例,演示如何通过XML配置文件进行Bean的声明和配置。

1. 声明和配置Bean:

<!-- applicationContext.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"><!-- 声明一个名为 "myBean" 的 Bean,类为 com.example.MyBean --><bean id="myBean" class="com.example.MyBean"><!-- 配置该 Bean 的属性 --><property name="name" value="John Doe"/></bean></beans>

在上述配置中:

  • <bean> 元素用于声明一个Bean。
  • id 属性指定了Bean的唯一标识符,即Bean的名字。
  • class 属性指定了Bean的类。
  • <property> 元素用于配置Bean的属性。

2. 构造函数注入:

<!-- applicationContext.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="anotherBean" class="com.example.AnotherBean"><!-- 构造函数参数注入 --><constructor-arg value="42"/></bean></beans>

在上述配置中:

  • <constructor-arg> 元素用于配置构造函数的参数。

3. 导入其他配置文件:

<!-- applicationContext.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"><!-- 导入其他配置文件 --><import resource="classpath:other-beans.xml"/></beans>

在上述配置中,通过 <import> 元素可以导入其他的XML配置文件,这样可以将配置文件拆分为多个模块,提高可维护性。

以上是一个简单的XML配置示例,实际项目中,配置会更为复杂,可能涉及到更多的特性和配置选项。

java注解方式

在Spring中,通过Java注解进行配置的方式更加简洁和灵活。以下是使用一些常见注解(@Component@Service@Repository)进行Bean声明,以及使用@Autowired注解进行依赖注入的示例。

1. 使用@Component声明Bean:

import org.springframework.stereotype.Component;@Component
public class MyComponent {// Bean的实现代码
}

在上述例子中,@Component注解用于声明一个Bean,Spring会自动扫描并注册这个Bean。

2. 使用更具体的注解(@Service@Repository):

import org.springframework.stereotype.Service;@Service
public class MyService {// Bean的实现代码
}
import org.springframework.stereotype.Repository;@Repository
public class MyRepository {// Bean的实现代码
}

在Spring中,@Service@Repository注解分别用于表示服务层和数据访问层的Bean。它们都是@Component的特殊化,用于更精确地指定Bean的角色。

3. 使用@Autowired进行依赖注入:

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;@Service
public class MyService {private final MyRepository myRepository;@Autowiredpublic MyService(MyRepository myRepository) {this.myRepository = myRepository;}// 使用 myRepository 进行业务逻辑
}

在上述例子中,@Autowired注解用于在MyService中注入一个MyRepository的实例。Spring容器会自动解析MyRepository的实例,并将其注入到MyService中。

这种基于注解的配置方式可以使代码更加清晰、简洁,而不需要显式地在XML配置文件中声明Bean和依赖关系。这样的注解配置方式也更符合现代Java开发的趋势。

JavaConfig配置方式

在Spring中,JavaConfig是一种基于Java的配置方式,它使用Java类来声明和配置Bean。以下是使用@Configuration注解和@Bean注解进行JavaConfig配置的示例。

1. 使用@Configuration注解声明配置类:

import org.springframework.context.annotation.Configuration;@Configuration
public class AppConfig {// 这个类用于声明Bean和配置应用程序的其他组件
}

在上述例子中,@Configuration注解用于标识一个配置类。

2. 使用@Bean注解定义Bean:

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;@Configuration
public class AppConfig {@Beanpublic MyBean myBean() {return new MyBean();}
}

在上述例子中,@Bean注解用于声明一个Bean。Spring容器会在初始化时调用myBean方法,并将其返回的实例注册为一个Bean。

3. Bean之间的依赖:

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;@Configuration
public class AppConfig {@Beanpublic MyBean myBean() {return new MyBean();}@Beanpublic AnotherBean anotherBean(MyBean myBean) {return new AnotherBean(myBean);}
}

在上述例子中,anotherBean方法中的参数myBean表示依赖关系。Spring容器会自动解析myBean方法,并将其实例注入到anotherBean中。

4. 使用@Autowired注解进行依赖注入:

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;@Configuration
public class AppConfig {@Beanpublic MyBean myBean() {return new MyBean();}@Beanpublic AnotherBean anotherBean() {return new AnotherBean();}@Beanpublic MyService myService(@Autowired MyBean myBean, @Autowired AnotherBean anotherBean) {return new MyService(myBean, anotherBean);}
}

在上述例子中,myService方法中使用了@Autowired注解,表示对MyBeanAnotherBean的依赖。Spring容器会自动解析这些依赖并将相应的实例注入到myService中。

JavaConfig方式使得配置更加类型安全,并且可以通过Java的编程语言特性来实现更复杂的配置逻辑。

条件化的配置

在Spring中,你可以使用@Conditional注解根据条件来选择性地配置Bean。这样的条件化配置允许你在不同的情况下选择性地加载或不加载特定的Bean。以下是一个简单的示例,演示如何使用@Conditional注解进行条件化配置。

示例:

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Conditional;
import org.springframework.context.annotation.Configuration;@Configuration
public class AppConfig {@Bean@Conditional(WindowsCondition.class)public MyBean windowsBean() {return new MyBean("Windows Bean");}@Bean@Conditional(LinuxCondition.class)public MyBean linuxBean() {return new MyBean("Linux Bean");}
}

在上述例子中,@Conditional注解被应用在@Bean注解上,分别标注在windowsBeanlinuxBean方法上。这两个Bean的加载将取决于相应的条件是否满足。

条件类的实现:

import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;public class WindowsCondition implements Condition {@Overridepublic boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {// 检查是否为Windows操作系统return context.getEnvironment().getProperty("os.name").toLowerCase().contains("win");}
}
import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;public class LinuxCondition implements Condition {@Overridepublic boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {// 检查是否为Linux操作系统return context.getEnvironment().getProperty("os.name").toLowerCase().contains("nix") ||context.getEnvironment().getProperty("os.name").toLowerCase().contains("nux") ||context.getEnvironment().getProperty("os.name").toLowerCase().contains("mac");}
}

在上述例子中,WindowsConditionLinuxCondition是两个条件类,分别用于判断是否为Windows和Linux操作系统。这样,根据实际运行环境的不同,Spring容器会选择性地加载符合条件的Bean。

条件化的配置允许你在不同的环境或特定条件下选择性地加载Bean,提供了更灵活的配置选项。

properties文件配置

在Spring中,你可以使用@PropertySource注解加载外部的属性文件,然后通过@Value注解注入这些属性值到你的Bean中。以下是一个简单的示例,演示如何使用@PropertySource@Value注解进行属性文件配置。

1. 创建属性文件:

假设有一个名为 application.properties 的属性文件:

# application.propertiesmy.property=value_from_properties_file

2. 使用@PropertySource注解加载属性文件:

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;@Component
@PropertySource("classpath:application.properties")
public class MyComponent {@Value("${my.property}")private String myProperty;public String getMyProperty() {return myProperty;}
}

在上述例子中,@PropertySource注解用于加载application.properties属性文件。@Value("${my.property}")注解用于注入属性文件中my.property的值到myProperty字段中。

3. 使用属性值:

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;@Service
public class MyService {private final MyComponent myComponent;@Autowiredpublic MyService(MyComponent myComponent) {this.myComponent = myComponent;}public void printMyProperty() {System.out.println("My Property: " + myComponent.getMyProperty());}
}

在上述例子中,MyService通过依赖注入得到了MyComponent,然后通过调用printMyProperty方法来输出属性文件中的值。

注意事项:

  • @PropertySource中的路径可以是相对于classpath的相对路径,也可以是绝对路径。
  • 在使用@Value注解时,被注入的属性值需要包裹在 ${} 中,表示引用属性文件中的值。
  • @PropertySource注解通常用于@Configuration注解的类上,以确保属性文件的加载在容器初始化阶段完成。

通过这种方式,你可以方便地将配置信息从外部属性文件中加载到Spring容器中,并在应用程序中使用这些属性值。

使用Spring boot简化配置

Spring Boot的设计理念是约定大于配置(Convention over Configuration),它通过提供自动化配置和默认约定来简化应用程序的配置和开发。以下是一些Spring Boot简化配置的特性和实践:

1. 自动化配置(Auto-Configuration):

Spring Boot通过自动配置(auto-configuration)机制尝试根据项目的依赖、类路径和其他条件来配置应用程序。这意味着你无需手动配置许多常见的配置项,Spring Boot会根据环境和依赖为你自动完成。

@SpringBootApplication
public class MyApplication {public static void main(String[] args) {SpringApplication.run(MyApplication.class, args);}
}

上述示例中,@SpringBootApplication注解包含了@EnableAutoConfiguration,它启用了自动配置特性。

2. 默认属性值:

Spring Boot在许多情况下都为你提供了合理的默认值。例如,你无需手动配置数据库连接信息,只需在application.propertiesapplication.yml中提供合适的属性值即可。

# application.propertiesspring.datasource.url=jdbc:mysql://localhost:3306/mydb
spring.datasource.username=root
spring.datasource.password=root

3. 自动扫描和组件注解:

Spring Boot默认会自动扫描应用程序包及其子包,将带有@Component@Service@Repository等注解的类注册为Spring容器中的Bean。

@Service
public class MyService {// Bean的实现代码
}

4. 嵌入式Web服务器:

Spring Boot集成了嵌入式Web服务器(如Tomcat、Jetty),无需手动配置,你的应用程序即可运行在内置的Web服务器上。

5. 依赖管理和Starter:

Spring Boot提供了一系列的“Starter”依赖,这些依赖包含了常见场景下所需的依赖和配置,只需引入相应的Starter,即可快速搭建应用。

<!-- pom.xml --><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency>
</dependencies>

6. 自定义属性:

通过@Value注解和application.propertiesapplication.yml中的属性,可以方便地将配置值注入到应用程序中。

@Component
public class MyComponent {@Value("${my.property}")private String myProperty;// ...
}

总结:

Spring Boot的自动化配置和约定大于配置的理念使得开发者可以更专注于业务逻辑,而不必过多关注底层配置细节。这使得开发过程更加简单、高效,并降低了出错的可能性。

动态bean的配置

在Spring中,你可以使用@Import注解来导入其他配置类,从而实现动态Bean的配置。这使得你可以在一个配置类中引入其他配置,实现模块化和动态配置的效果。以下是一个简单的示例,演示如何使用@Import注解导入其他配置类。

1. 创建配置类:

// DatabaseConfig.javaimport org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;@Configuration
public class DatabaseConfig {@Beanpublic DataSource dataSource() {// 配置数据源return new DataSource();}
}

2. 创建另一个配置类:

// ServiceConfig.javaimport org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;@Configuration
public class ServiceConfig {@Beanpublic MyService myService() {// 配置业务服务return new MyService();}
}

3. 主配置类中使用@Import导入其他配置类:

// AppConfig.javaimport org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;@Configuration
@Import({DatabaseConfig.class, ServiceConfig.class})
public class AppConfig {// 这个类可以为空,主要用于导入其他配置类
}

在上述例子中,AppConfig类使用了@Import注解,将DatabaseConfigServiceConfig这两个配置类导入。这样,AppConfig就包含了这两个配置类中定义的Bean。

4. 使用导入的配置类中的Bean:

// MyService.javaimport org.springframework.beans.factory.annotation.Autowired;public class MyService {private final DataSource dataSource;@Autowiredpublic MyService(DataSource dataSource) {this.dataSource = dataSource;}// 使用 dataSource 进行业务逻辑
}

在上述例子中,MyService类通过构造函数注入了DataSource这个Bean,而DataSource是在DatabaseConfig配置类中定义的。

通过使用@Import注解,你可以将不同的配置拆分到不同的配置类中,从而实现动态和模块化的配置。这在大型项目中特别有用,使得配置更加清晰、易于维护。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/323822.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python从入门到网络爬虫(函数详解)

前言 函数是变成语言中最常见的语法&#xff0c;函数的本质就是功能的封装。使用函数可以大大提高编程效率与程序的可读性。函数是能够实现特定功能的计算机代码而已&#xff0c;他是一种特定的代码组结构。 函数的作用 1.提升代码的重复利用率&#xff0c;避免重复开发相同代…

01-线程池项目背景:C++的数据库操作

从0开始学习C与数据库的联动 1.原始方式-使用MySQL Connector/C 提供的API查询 1.1 数据库预操作 我的本地电脑上有mysql数据库&#xff0c;里面预先创建了一个database名叫chat&#xff0c;用户名root&#xff0c;密码password。 1.2 Visual Studio预操作 在Windows上使用…

JavaScript 基础三part1.数组

JavaScript 基础三part1.数组 2.1 数组是什么2.2 数组的基本使用&#xff08;1&#xff09;声明&#xff08;2&#xff09;取值&#xff08;3&#xff09;一些术语&#xff08;4&#xff09;遍历数组 2.3 操作数组&#xff08;1&#xff09;修改&#xff08;2&#xff09;新增&…

x-cmd pkg | doggo - 现代化的 DNS 客户端

目录 简介首次用户快速实验指南功能特点类似工具与竞品进一步探索 简介 doggo 是一个由 Karan Sharma 于 2020 年使用 Go 语言开发的 DNS 客户端。它类似于 dig 命令&#xff0c;但旨在以现代化、简洁和可读的格式输出 DNS 查询结果。 首次用户快速实验指南 使用 x doggo 即可…

工作中人员离岗识别摄像机

工作中人员离岗识别摄像机是一种基于人工智能技术的智能监控设备&#xff0c;能够实时识别员工离岗状态并进行记录。这种摄像机通常配备了高清摄像头、深度学习算法和数据处理系统&#xff0c;可以精准地监测员工的行为&#xff0c;提高企业的管理效率和安全性。 工作中人员离岗…

SSM建材商城网站----计算机毕业设计

项目介绍 本项目分为前后台&#xff0c;前台为普通用户登录&#xff0c;后台为管理员登录&#xff1b; 管理员角色包含以下功能&#xff1a; 管理员登录,管理员管理,注册用户管理,新闻公告管理,建材类型管理,配货点管理,建材商品管理,建材订单管理,建材评价管理等功能。 用…

低代码UI构件程序设计基础实训一

步骤一 低代码在线调试工具 网址 低代码在线调试工具 步骤二 D盘建一个文件夹&#xff0c;文件夹下建两个文件夹ico和js 网上找一些图片&#xff0c;后缀.png&#xff0c;编号从0开始&#xff0c;图片另存到ico文件夹下 下载&#xff08;右键另存为&#xff09;以下四个页面…

【面试高频算法解析】算法练习6 广度优先搜索

前言 本专栏旨在通过分类学习算法&#xff0c;使您能够牢固掌握不同算法的理论要点。通过策略性地练习精选的经典题目&#xff0c;帮助您深度理解每种算法&#xff0c;避免出现刷了很多算法题&#xff0c;还是一知半解的状态 专栏导航 二分查找回溯&#xff08;Backtracking&…

AI大模型与低代码开发应用的完美融合

近年来&#xff0c;人工智能&#xff08;AI&#xff09;技术的快速发展引领了许多创新的应用&#xff0c;而大型AI模型和低代码开发平台是这一进展的两个重要方面。本文将探讨AI大模型与低代码开发应用的关系&#xff0c;以及如何利用它们共同推动技术创新和业务发展。 AI大模型…

Flowable6.8适配人大金仓 达梦

目录 前言 一、Flowable6.8 适配人大金仓 1.引入postgreSQL依赖 2.配置驱动 3.总结 二&#xff0c;Flowable 6.8 适配DMV8 1.引入达梦依赖 2.配置数据库 3.确认liquibase的版本 4.liquibase4.x的适配步骤 4.1 在项目中新建liquibase.database.core 包 4.2 创建Oracl…

如何实现无人机识别功能

无人机识别算法可以基于不同的传感器和技术&#xff0c;结合多种方法进行实现。以下是一些常见的无人机识别算法和技术&#xff1a; 视觉识别&#xff1a; 图像处理&#xff1a; 使用计算机视觉技术对无人机图像进行处理&#xff0c;包括特征提取、目标检测和跟踪等。深度学习&…

【模拟电路】软件Circuit JS

一、模拟电路软件Circuit JS 二、Circuit JS软件配置 三、Circuit JS 软件 常见的快捷键 四、Circuit JS软件基础使用 五、Circuit JS软件使用讲解 欧姆定律电阻的串联和并联电容器的充放电过程电感器和实现理想超导的概念电容阻止电压的突变&#xff0c;电感阻止电流的突变LR…