这是有效的语法
<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:application.properties"/>
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE"/>
</bean>
这是不工作的替代格式
<context:property-placeholder location="classpath:application.properties" system-properties-mode="OVERRIDE"/>
任何想法为什么?我总是会在构建时进行测试。
应用程序属性文件只包含这个 hibernate.show.sql = false hibernate.format.sql = true