SpringBoot学习之路(四)——SpringBoot自定义配置

本文介绍了SpringBoot中三种自定义配置的方式:1) 使用@PropertyResource加载properties配置文件;2) 使用@ImportResource加载XML配置文件,适用于特殊情况;3) 使用@Configuration创建配置类。详细步骤包括配置文件创建、配置类编写和测试,展示了如何将Bean注入Spring容器。
摘要由CSDN通过智能技术生成

一、使用@PropertyResource记载配置文件

1、在resource目录下新建一个testMyproperty.properties配置文件

#对实体类对象Myporperty进行属性设置
test.id=1
test.name=Jerry

2、在src/main/com/chen/domain下自定义一个配置类MyProperty

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;
​
@Configuration //表明当前类是一个自定义配置类
//@Component // 可以替换@Configuration和@EnableConfigurationProperties(MyProperty.class)这两个注解
@PropertySource("classpath:testMyproperty.properties")// 指定自定义配置文件的路径和名称
@EnableConfigurationProperties(MyProperty.class)//表明开启当前配置类的属性注入功能
@ConfigurationProperties(prefix = "test")// 批量注入,将testMyproper
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值