Spring Properties可以通過以下幾種方式來引入外部配置:
@Configuration
@PropertySource("classpath:config.properties")
public class AppConfig {
@Value("${key}")
private String value;
// Other configurations...
}
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:config.properties"/>
</bean>
<bean id="myBean" class="com.example.MyBean">
<property name="property" value="${key}"/>
</bean>
@Autowired
private Environment env;
public void someMethod() {
String value = env.getProperty("key");
}
通過以上幾種方式,可以方便地將外部配置文件的屬性值注入到Spring Bean中,實現配置的靈活性和可維護性。