gpt4 book ai didi

spring boot中的properties参数配置详解

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章spring boot中的properties参数配置详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

application.properties 。

application.properties是spring boot默认的配置文件,spring boot默认会在以下两个路径搜索并加载这个文件 。

src\main\resources src\main\resources\config 。

配置系统参数 。

在application.properties中可配置一些系统参数,spring boot会自动加载这个参数到相应的功能,如下 。

?
1
2
3
4
5
6
7
8
#端口,默认为 8080
server.port= 80
#访问路径,默认为/
server.context-path=/test
#输出日志文件,默认不输出 
logging.file=/log.txt
#修改日志级别,默认为INFO
logging.level.root=DEBUG

自定义properties文件 。

在spring boot启动类或配置类中添加以下注解,可在启动时载入自定义的配置文件 。

@PropertySource("classpath:config/xxx.properties")  。

如果要同时载入多个文件 。

@PropertySource(value={"classpath:config/a.properties","classpath:config/b.properties"})  。

自定义参数 。

以自命名配置一些参数,如 。

?
1
2
key1=values1
key2=values2

在JAVA代码中,使用@Value注解,在项目启动时会将自定义参数加载到全局变量,如下 。

?
1
2
3
4
@RestController
public class SampleController {
   @Value (value= "${key1}" )
   private String key;

批量注入到类变量 。

在properties中配置两个以a为前缀的参数 。

?
1
2
a.key1=values1
a.key2=values2

在JAVA中用@ConfigurationProperties 将以a为前缀的参数注入到当前变量中,需要有setXxx()方法 。

?
1
2
3
4
5
6
7
8
9
10
11
@RestController
@ConfigurationProperties (prefix = "a" )
public class SampleController {
   private String key1;
   private String key2;
   public void setKey1(String key1) {
     this .key1 = key1;
   }
   public void setKey2(String key2) {
     this .key2 = key2;
   }

总结 。

以上所述是小编给大家介绍的spring boot中的properties参数配置详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我网站的支持! 。

原文链接:http://blog.csdn.net/ztx114/article/details/78082280 。

最后此篇关于spring boot中的properties参数配置详解的文章就讲到这里了,如果你想了解更多关于spring boot中的properties参数配置详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com