2

我想使用 Spring 3.1.1 用属性值填充一些字段,但这些字段始终保持为空。

添加到 applicationContext.xml

  http://www.springframework.org/schema/util 
  http://www.springframework.org/schema/util/spring-util-3.0.xsd">

  <util:properties id="props" location="classpath:application.properties" />

应用程序属性:

myProp=value

java类:

  @Value("#{props[myProp]}")
  private String myField;

但是在创建 bean 时,myField 没有填充属性文件中的“值”,而是保持为空。

也尝试过(没有成功):

  @Value("#{props.myProp}")
  private String myField;

  @Value("#{myProp}")
  private String myField;

找到了 application.properties 文件,因为我在移动它后得到了“找不到文件”。

这里是堆栈跟踪:http: //pastebin.com/5A8i5gF8

我必须改变什么?

4

5 回答 5

0
<?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:context="http://www.springframework.org/schema/context"
    xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:cxf="http://cxf.apache.org/core"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="
      http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
      http://cxf.apache.org/core
      http://cxf.apache.org/schemas/core.xsd
      http://cxf.apache.org/jaxws
      http://cxf.apache.org/schemas/jaxws.xsd
      http://www.springframework.org/schema/util 
      http://www.springframework.org/schema/util/spring-util-3.0.xsd">

    <import resource="classpath:META-INF/cxf/cxf.xml" />
    <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
    <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />

    <context:annotation-config />   
    <context:component-scan base-package="my.base.package" /> 
    <util:properties id="props" location="classpath:application.properties" />


    ... <some beans (transactions, persistence, ws-endpoints) not used by the test class > ....

        <cxf:bus>
        <cxf:features>
            <cxf:logging />
        </cxf:features>
    </cxf:bus>

</beans>
于 2012-08-21T13:08:07.760 回答
0

很抱歉发布新答案,但评论中的代码格式不正确。

@Repository
@Qualifier(value = "myStrategy")
public class MyClass implements MyInterface {

    @Value("${prop1}")
    private String prop1;

    MyClass(){
        <prop1 is passed to a method to set a config.>
    }
于 2012-08-21T13:43:47.340 回答
0

您可能缺少<context:component-scan/><context:annotation-config/>在您的应用程序上下文中 - 它注册了一个AutowiredAnnotationBeanPostProcessor实际处理 @Value 标记的 bean。如果它不存在,只需添加两者之一,它应该可以工作。

于 2012-08-21T12:09:46.960 回答
0

您是否已将具有 myField 类变量的类声明或配置到 applicationContext.xml 中?

于 2012-08-21T11:14:40.560 回答
0

尝试使用 char $ 而不是 # 示例:

 @Value("${myProp}")
  private String myField;
于 2012-08-21T11:17:38.800 回答