第十节:学习ConfigurationProperties类来配置pojo实体类参数(自学Spring boot 3.x的第二天)

大家好,我是网创有方 。这节记录下如何使用ConfigurationProperties来实现自动注入配置值。。实现将配置文件里的application.properties的参数赋值给实体类并且打印出来。

第一步:新建一个实体类WechatConfig

package cn.wcyf.wcai.config;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;

@Configuration   //声明是个配置类
@ConfigurationProperties("wechat")
public class WechatConfig {
    public String getAppId() {
        return appId;
    }

    public void setAppId(String appId) {
        this.appId = appId;
    }

    public String getToken() {
        return token;
    }

    public void setToken(String token) {
        this.token = token;
    }

    public String getSecretKey() {
        return secretKey;
    }

    public void setSecretKey(String secretKey) {
        this.secretKey = secretKey;
    }

    private String appId;
    private String token;
    private String secretKey;
}

其中的

@Component("WechatConfig")

这个注解起的作用,我们前面的文章已经讲过了,@ConfigurationProperties("wechat")这个注解的意思是告诉实体类WechatConfig,你的参数从application.properties文件中获取,其中wechat就是标记。

第二步:新建一个Controller,并且编写一个requestMapping方法

@RestController
public class HellowordController {
    @Autowired
    private WechatConfig wechatSetting;

    @RequestMapping("/helloword")
    public String getHelloword(){
        return "helloword";
    }


        @RequestMapping("/getWechatSetting")
        public String getWechatSetting(){
            return wechatSetting.getAppId()+" "+wechatSetting.getToken()+" "+wechatSetting.getSecretKey();
    }
}

第三步:编写跟实体类对应赋值的application.properties参数

wechat.app-id=wx4dqdadqqdq
wechat.token=da6644qd44ad72q
wechat.secret-key=7a78d57q4523szd45357

 这里的标记wechat和前面的实体类中的wechat标记是同一个,这样确保能正确获取到配置文件中的参数值。

第四步:运行看效果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Mero技术博客

创作不易,打赏小弟可否

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值