application.properties配置如何读取
时间: 2023-09-25 08:15:24 浏览: 89
要读取application.properties配置文件,可以使用Spring框架提供的PropertiesLoaderUtils工具类。首先,需要导入相应的依赖包和类,并创建一个方法readPropertiesFile(String fileName)来读取配置文件。在该方法中,使用ClassPathResource类来指定配置文件的路径,然后通过PropertiesLoaderUtils.loadProperties()方法加载配置文件并返回Properties对象。最后,通过getProperty()方法来获取具体的配置项的值。以下是一个示例代码:
引用:
```java
import java.util.Properties;
import org.springframework.core.io.Resource;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.support.PropertiesLoaderUtils;
public static Properties readPropertiesFile(String fileName) {
try {
Resource resource = new ClassPathResource(fileName);
Properties props = PropertiesLoaderUtils.loadProperties(resource);
return props;
} catch (Exception e) {
System.out.println("读取配置文件:" + fileName + "异常,读取失败");
e.printStackTrace();
}
return null;
}
Properties properties = readPropertiesFile("application.properties");
System.out.println(properties.getProperty("spring.rabbitmq.host"));
```
此外,还可以通过创建配置类和属性类来读取配置文件。首先,创建一个@ConfigurationProperties注解的属性类,用于映射配置文件中的属性值。然后,在配置类上使用@EnableConfigurationProperties注解,并指定属性类,以将属性类注册为配置类的属性。最后,通过@Autowired注解将属性类注入到需要读取配置的类中。以下是一个示例代码:
引用:
```java
import org.springframework.boot.SpringBootConfiguration;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
@EnableConfigurationProperties(TestProperties.class)
@SpringBootConfiguration
public class TestConfiguration {
}
```
引用:
```java
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
@Getter
@Setter
@ConfigurationProperties(prefix = "spring.rabbitmq")
public class TestProperties {
private String host;
private String port;
private String username;
private String password;
}
```
通过以上的配置,可以通过@Autowired注解将TestProperties类注入到需要读取配置的类中,并直接使用其中的属性值。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [SpringBoot读取application.properties配置文件](https://blog.csdn.net/watson2017/article/details/124732267)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文