spring怎么加載外部配置文件

小億
176
2023-09-19 01:36:31
欄目: 編程語言

在Spring中,可以使用PropertyPlaceholderConfigurerPropertySourcesPlaceholderConfigurer來加載外部配置文件。

  1. 使用PropertyPlaceholderConfigurer加載外部配置文件:
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:config.properties"/>
</bean>

其中,config.properties是外部配置文件的路徑。

  1. 使用PropertySourcesPlaceholderConfigurer加載外部配置文件:
@Configuration
@PropertySource("classpath:config.properties")
public class AppConfig {
// ...
}

在這種方式下,需要在Spring的Java配置類上使用@PropertySource注解,并指定外部配置文件的路徑。

在兩種方式下,外部配置文件中的屬性可以通過@Value注解或Environment對(duì)象進(jìn)行注入和訪問。

@Value("${property.key}")
private String propertyValue;
@Autowired
private Environment env;
public void someMethod() {
String propertyValue = env.getProperty("property.key");
}

0