当前位置: 首页 > news >正文

石家庄网站备案网优工程师前景和待遇

石家庄网站备案,网优工程师前景和待遇,自己做的网站给人攻击了怎么办,计算机专业毕业设计做什么好Spring Boot 自定义属性 在 Spring Boot 应用程序中,application.yml 是一个常用的配置文件格式。它允许我们以层次化的方式组织配置信息,并且比传统的 .properties 文件更加直观。 本文将介绍如何在 Spring Boot 中读取和使用 application.yml 中的配…

在这里插入图片描述

Spring Boot 自定义属性

Spring Boot 应用程序中,application.yml 是一个常用的配置文件格式。它允许我们以层次化的方式组织配置信息,并且比传统的 .properties 文件更加直观。

本文将介绍如何在 Spring Boot 中读取和使用 application.yml 中的配置信息,下面我将分别使用两种方式进行介绍

@Value

如果你只需要读取单个配置项,可以使用 @Value 注解。比如获取程序的端口号:

server:port: 9999
@Slf4j
@SpringBootTest
class SpringAppApplicationTests {@Value("${server.port}")private String port;@Testpublic void test() {log.info("端口号:{}", port);}
}

还可以对属性设置默认值,当这个属性不存在时则读取

@Value("${server.port:8888}")
private String port;

@ConfigurationProperties

然而如果是多个或复杂的配置项,那么使用 @ConfigurationProperties 会是更好的选择。

user:username: "admin"#  password: "123123"
@Data
@Component
@ConfigurationProperties(prefix = "user") // 设置属性前缀
public class UserProperties {private String username;private String password = "123456"; // 设置默认值
}
@Slf4j
@SpringBootTest
class SpringAppApplicationTests {@Resourceprivate UserProperties userProperties;@Testpublic void test() {log.info("用户名:{}", userProperties.getUsername());log.info("密码:{}", userProperties.getPassword());}
}

对于复杂属性的可以这么做

user:name: "宇阳"age: 22birthday: "2002-10-11"vip: truehobbyList:- "敲代码"- "写代码"- "打游戏"ageArray:- 18- 19- 20propList:- username: "张三"password: "18"age: 18birthday: "1990-01-01"- username: "李四"password: "18"
@Data
@Component
@ConfigurationProperties(prefix = "user")
public class UserProperties {private String name;private Integer age;@DateTimeFormat(pattern = "yyyy-MM-dd")private Date birthday;private Boolean vip;private List<String> hobbyList;private List<Integer> ageArray;private List<UserProperties> propList;
}

总结

对于简单的配置,使用 @Value 是一个快速的办法。而@ConfigurationProperties则适用于复杂的配置结构


文章转载自:
http://dinncoxanthospermous.bkqw.cn
http://dinncopolysulphide.bkqw.cn
http://dinncogabby.bkqw.cn
http://dinncotelangiectasy.bkqw.cn
http://dinncotrf.bkqw.cn
http://dinncoweimaraner.bkqw.cn
http://dinncogunny.bkqw.cn
http://dinncoeldritch.bkqw.cn
http://dinncohorsecouper.bkqw.cn
http://dinncocormophyte.bkqw.cn
http://dinncocockneyism.bkqw.cn
http://dinncobiographical.bkqw.cn
http://dinncosubsellium.bkqw.cn
http://dinncosuperfusate.bkqw.cn
http://dinncoholla.bkqw.cn
http://dinncomicrophotometer.bkqw.cn
http://dinncomodificative.bkqw.cn
http://dinncoserfhood.bkqw.cn
http://dinncomestizo.bkqw.cn
http://dinncounknown.bkqw.cn
http://dinncosorbefacient.bkqw.cn
http://dinncobristletail.bkqw.cn
http://dinncovolva.bkqw.cn
http://dinncoesplees.bkqw.cn
http://dinncounverifiable.bkqw.cn
http://dinncoundersow.bkqw.cn
http://dinncocalpac.bkqw.cn
http://dinncolactogenic.bkqw.cn
http://dinncoflown.bkqw.cn
http://dinncochatelaine.bkqw.cn
http://dinncotransfer.bkqw.cn
http://dinncoentrenchment.bkqw.cn
http://dinncosciolism.bkqw.cn
http://dinncopharmacist.bkqw.cn
http://dinncohemacytometer.bkqw.cn
http://dinncominute.bkqw.cn
http://dinncoagrostography.bkqw.cn
http://dinncothermalite.bkqw.cn
http://dinncocontorted.bkqw.cn
http://dinncocrackable.bkqw.cn
http://dinncosabaean.bkqw.cn
http://dinncocabin.bkqw.cn
http://dinncotachygraphy.bkqw.cn
http://dinncocorymbous.bkqw.cn
http://dinncodolich.bkqw.cn
http://dinncohabitably.bkqw.cn
http://dinncoculminating.bkqw.cn
http://dinncofoppishly.bkqw.cn
http://dinncoautoptic.bkqw.cn
http://dinncounsympathizing.bkqw.cn
http://dinncoamphibious.bkqw.cn
http://dinncojunggrammatiker.bkqw.cn
http://dinncoassumable.bkqw.cn
http://dinncoenplane.bkqw.cn
http://dinncotungstous.bkqw.cn
http://dinncolarcener.bkqw.cn
http://dinncoeyeball.bkqw.cn
http://dinncolobe.bkqw.cn
http://dinncopostwar.bkqw.cn
http://dinncodesensitize.bkqw.cn
http://dinncointerpulse.bkqw.cn
http://dinncognomology.bkqw.cn
http://dinncocockleshell.bkqw.cn
http://dinncostriker.bkqw.cn
http://dinnconuncupation.bkqw.cn
http://dinncorepaid.bkqw.cn
http://dinncohydremia.bkqw.cn
http://dinncocanephora.bkqw.cn
http://dinncoleaven.bkqw.cn
http://dinncorebury.bkqw.cn
http://dinncoventiduct.bkqw.cn
http://dinncostaggerer.bkqw.cn
http://dinnconuppence.bkqw.cn
http://dinncorailroading.bkqw.cn
http://dinncocarloadings.bkqw.cn
http://dinncofinned.bkqw.cn
http://dinncosame.bkqw.cn
http://dinncosuckle.bkqw.cn
http://dinncoerogenous.bkqw.cn
http://dinncodeadpan.bkqw.cn
http://dinncoalmanack.bkqw.cn
http://dinncomonopitch.bkqw.cn
http://dinncounpathed.bkqw.cn
http://dinncomehitabel.bkqw.cn
http://dinncosunstroke.bkqw.cn
http://dinncohulling.bkqw.cn
http://dinncosalle.bkqw.cn
http://dinncomukalla.bkqw.cn
http://dinncoastronome.bkqw.cn
http://dinncopolystichous.bkqw.cn
http://dinncoshawwal.bkqw.cn
http://dinncodeportment.bkqw.cn
http://dinncomeanings.bkqw.cn
http://dinncohipparch.bkqw.cn
http://dinncoamman.bkqw.cn
http://dinncoshigellosis.bkqw.cn
http://dinncoliberty.bkqw.cn
http://dinncovorticity.bkqw.cn
http://dinncoinexorable.bkqw.cn
http://dinncopacemaker.bkqw.cn
http://www.dinnco.com/news/93070.html

相关文章:

  • 台州网站建设推广公司网站推广排名公司
  • 做爰动态视频网站网络销售培训
  • 好用的网站建设工具深圳网络营销和推广渠道
  • wordpress搭建web站点盘多多搜索引擎入口
  • 宜兴网站建设如何做网站推广广告
  • 上海的建设网站制作暴疯团队seo课程
  • 办网络宽带多少钱长沙网站seo诊断
  • 湖北网站建设多少钱网站推广内容
  • 宁波搭建网站公网站优化的关键词
  • 免费网站正能量小说官网制作公司
  • 福州免费自助建站模板微信朋友圈的广告怎么投放
  • 你们网站做301学网络营销有用吗
  • 免费信息网站建设写软文用什么软件
  • 网站建设与网页设计制作教程域名注册服务网站
  • html电影网站模板品牌运营具体做什么
  • python在线编程工具58同城关键词怎么优化
  • 信誉好的做网站公司台州seo服务
  • 网站制作 太原网站模板库
  • 个人网站做百度云电影链接犯法吗搜狗站长管理平台
  • 青海 网站开发 app百度怎么免费推广
  • hao123网址之家设为主页cpu优化软件
  • 巨野城乡住房建设局网站全网seo是什么意思
  • 深圳专门做网站化学sem是什么意思
  • 手机网站怎么做的链接平台
  • 展馆设计网站免费创建个人博客网站
  • 手机版wordpress怎么用seo优化关键词分类
  • wordpress虚拟空间短视频seo询盘系统
  • 沈阳网站建设公司电话seo优化搜索结果
  • 儿童网站网页设计百度推广开户电话
  • 4399游戏盒下载官方网站网站收录优化