私はこのプロパティを設定しています
<bean id="preferencePlaceHolder"
class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
<property name="locations" ref="propertiesLocations" />
</bean>
<beans profile="dev, testing">
<util:list id="propertiesLocations">
<value>classpath:runtime.properties</value>
<value>classpath:dev.properties</value>
</util:list>
</beans>
...
そのようなruntime.propertiesにプロパティがあります
doImportOnStartup=false
たまにはやってみたい
mvn jetty:run -DdoImportOnStartup=true
システム プロパティが優先されます。どうすればこれを達成できますか?ありがとう。