欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

spring boot中的properties参数配置详解

程序员文章站 2024-02-28 15:27:52
application.properties application.properties是spring boot默认的配置文件,spring boot默认会在以下两...

application.properties

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

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

配置系统参数

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

#端口,默认为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"}) 

自定义参数

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

key1=values1 
key2=values2 

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

@restcontroller 
public class samplecontroller { 
  @value(value="${key1}") 
  private string key; 

批量注入到类变量

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

a.key1=values1 
a.key2=values2 

在java中用@configurationproperties 将以a为前缀的参数注入到当前变量中,需要有setxxx()方法

@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参数配置详解,希望对大家有所帮助