概述
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里的属性值所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复