我是靠谱客的博主 笨笨项链,最近开发中收集的这篇文章主要介绍springboot 引入 .yml里的属性值,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;

import java.time.Duration;


@Configuration
@PropertySource("classpath:application.yml")
@ConfigurationProperties(prefix = "jwt")
@Data
public class TokenSettings {

    @Value("${secretKey}")
    private String secretKey;
    @Value("${accessTokenExpireTime}")
    private Duration accessTokenExpireTime;
    @Value("${refreshTokenExpireTime}")
    private Duration refreshTokenExpireTime;
    @Value("${refreshTokenExpireAppTime}")
    private Duration refreshTokenExpireAppTime;
    @Value("${issuer}")
    private String  issuer;
}

在这里插入图片描述

最后

以上就是笨笨项链为你收集整理的springboot 引入 .yml里的属性值的全部内容,希望文章能够帮你解决springboot 引入 .yml里的属性值所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部