-1

这是有效的语法

<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

4

1 回答 1

1

您的语法看起来正确。您是否context在上下文文件中注册了命名空间?

例如:

<beans ...
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="...
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
于 2013-01-28T20:19:22.457 回答