关于spring字段注入的不同方式

1.@Vaule

在ssm的模式中

kotlin 复制代码
@Value("${jdbc.driver}")
private String driverClassName;
@Value("${jdbc.url}")
private String url;
@Value("${jdbc.username}")
private String username;
@Value("${jdbc.password}")
private String password;

可以使用@value的方式直接注入字段,spring启动后,读取配置文件

其中:bootstrap.properties主要用于配置Spring Boot应用程序的启动阶段,而application.properties主要用于配置应用程序的业务逻辑。在实际开发中,我们通常会根据需要修改application.properties文件,而不需要修改bootstrap.properties文件。

当然,我们可以自定义资源的路径

less 复制代码
@Configuration
@PropertySource("classpath:jdbc.properties")
@Import({jdbcconfig.class})

在配置类里,通过@PropertySource来指定resource目录下的文件名,@PropertySource添加资源的路径

2.前缀的使用

前缀的自动注入注解由springboot提供

介绍一下在ssm的架构中,属性注入的两种方式

  1. @PropertySource:用于指定属性文件的位置,可以在Spring的配置类上使用。

  2. PropertyPlaceholderConfigurer:用于解析属性文件中的占位符,将属性值注入到Bean的属性中,比如:

    ini 复制代码
      <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location" value="classpath:config.properties"/>
    </bean>
    <bean id="myBean" class="com.example.MyBean">
        <property name="someProperty" value="${property.key}"/>
    </bean>

    在这个例子中,,property.key是属性文件中的一个键,使用配置文件来注册bean

springboot提供了两个注解

@ConfigurationProperties(prefix = "myapp.database") ,当prefix+url与配置文件相同时,可自动注入 注意:这个bean对象需要写getter和setter方法

less 复制代码
@Component
@ConfigurationProperties(prefix = "myapp.database") 
public class DatabaseProperties { 
private String url; 
private String username; 
private String password; // 省略getter和setter方法 }

@EnableConfigurationProperties(DatabaseProperties.class) ,在

kotlin 复制代码
import org.springframework.boot.context.properties.EnableConfigurationProperties; 
import org.springframework.context.annotation.Configuration;
@Configuration 
@EnableConfigurationProperties(DatabaseProperties.class) 
public class AppConfig {
// 可以在这里注入其他Bean或配置 }
相关推荐
paopaokaka_luck2 小时前
【360】基于springboot的志愿服务管理系统
java·spring boot·后端·spring·毕业设计
码农小旋风3 小时前
详解K8S--声明式API
后端
Peter_chq3 小时前
【操作系统】基于环形队列的生产消费模型
linux·c语言·开发语言·c++·后端
Yaml43 小时前
Spring Boot 与 Vue 共筑二手书籍交易卓越平台
java·spring boot·后端·mysql·spring·vue·二手书籍
小小小妮子~3 小时前
Spring Boot详解:从入门到精通
java·spring boot·后端
hong1616883 小时前
Spring Boot中实现多数据源连接和切换的方案
java·spring boot·后端
睡觉谁叫~~~5 小时前
一文解秘Rust如何与Java互操作
java·开发语言·后端·rust
2401_865854887 小时前
iOS应用想要下载到手机上只能苹果签名吗?
后端·ios·iphone
AskHarries7 小时前
Spring Boot集成Access DB实现数据导入和解析
java·spring boot·后端
2401_857622667 小时前
SpringBoot健身房管理:敏捷与自动化
spring boot·后端·自动化