【问题标题】:Could not resolve placeholder for context:property-placeholder无法解析上下文的占位符:property-placeholder
【发布时间】:2013-02-07 21:57:16
【问题描述】:

我正在尝试根据环境变量将我的应用程序设置为使用不同的数据源定义,但我遇到了以下错误。我查看了许多类似的问题,但它们似乎并不相同。

我已经设置了多个属性文件:

env-dev.properties
env-test.properties
env-prod.properties
env-.properties

我创建了一个名为 MEM_ENV 的系统属性,其值为“dev”

我的 spring xml 文件如下所示:

    <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
    <context:property-placeholder
        location="classpath*:*env-${MEM_ENV}.properties" />
    <bean id="mongoDataSource" class="com.iLearn.persistence.base.MongoDataSourceImpl">
        <property name="server" value="${mongo.server}" />
        <property name="port" value="${mongo.port}" />
        <property name="dbName" value="${mongo.dbName}" />
        <property name="userName" value="${mongo.userName}" />
        <property name="password" value="${mongo.password}" />
    </bean>

我的属性文件如下所示:

mongo.server=aServer.com
mongo.port=10003
monog.dbName=aDBName
mongo.userName=aUserName
mongo.password=aPassword

我得到的例外是:

    message org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'mongoDataSource' defined in class path resource [springAppConfig.xml]: Could not resolve placeholder 'mongo.server' in string value "${mongo.server}"

description The server encountered an internal error (org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'mongoDataSource' defined in class path resource [springAppConfig.xml]: Could not resolve placeholder 'mongo.server' in string value "${mongo.server}") that prevented it from fulfilling this request.

exception

javax.servlet.ServletException: org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'mongoDataSource' defined in class path resource [springAppConfig.xml]: Could not resolve placeholder 'mongo.server' in string value "${mongo.server}"
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:606)
    org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:357)
    com.iLearn.security.AccessFilter.doFilter(AccessFilter.java:43)

【问题讨论】:

  • 对了,我用的是Spring 3.2.1.Release版
  • 试试 location="classpath:/env-${MEM_ENV}.properties" />
  • 它不起作用 - 它会创建一个不同的异常 - FileNotFound
  • 好的,这意味着前面的文件已经被解析了,所以您只需要确定 MEM_ENV 系统变量的正确值,并且 mongo.server 属性是在 env-dev.properties 中定义的文件,我在这里看不到其他案例。
  • 我在想同样的事情,但我似乎看不出问题所在,所以我想我会看看我是否遗漏了一些更微妙的东西。

标签: java database spring properties environment-variables


【解决方案1】:

在我重新启动机器之前,系统变量似乎不起作用。之后它工作正常,(一旦我修正了monog.dbName的错字)。

我不确定是重新启动 Windows、重新启动 Eclipse 还是重新启动 Tomcat 解决了问题,因为所有这些都是在我重新启动时发生的。

希望这对其他人有所帮助 - 如果您遇到此问题,请先尝试重新启动。

【讨论】:

    【解决方案2】:

    您错误地使用了classpath 解析器。删除一个不必要的*

    改变,

    <context:property-placeholder location="classpath*:*env-${MEM_ENV}.properties" />
    

    <context:property-placeholder location="classpath*:env-${MEM_ENV}.properties" />
    

    【讨论】:

    • 这似乎没有任何区别。有一个或两个 * 我仍然得到上述异常。如果我一起删除“类路径*:”,我会得到一个不同的异常,它找不到属性文件。这让我认为在这种情况下它正在寻找属性文件......
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-06-23
    • 2017-11-30
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多