我有一个基于环境加载的属性文件。我在 applicationContext.xml 中创建了一个占位符
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:environment-${buildProfile}.properties</value>
</list>
</property>
</bean>
还有另一种方法可以通过 Maven 加载此文件。
你能建议我哪个是加载属性文件的更好方法吗?这有什么性能差异吗?