1

我在我的项目中使用 Java+Spring+spring XML 配置。

我想从属性文件中读取一个属性值,并使用输入字符串值在 spring 配置中设置 java 值。

MyClass.class

private String tableDetails;
private String logpath;

myTest.properties

log_path=C:\test\app
table1_details=table1Name|table1Key|query1
table2_details=table2Name|table2Key|query2
table3_details=table3Name|table3Key|query3

Spring_config.xml

<bean id="myClass" class="com.test.MyClass">
        <property name="logpath" ref="${log_path}"/>
<property name="tableName" value="#{systemProperties['checker.table']}"/>        
        <property name="tabledetails" value="${#{systemProperties['checker.table']}}"/>

假设 checker.table = table1_details 然后

<!--working-->
<property name="tableDetails" value="${table1_details}"/> 
<!--not working-->
<property name="tableDetails" value="${#{systemProperties['checker.table']}}"/> 

所以要求是我在 systemProperties['checker.table'] 中有属性名称,我无法在值字段中使用它来读取 table1_details 的属性详细信息并在 MyClass 中设置 tableDetails?

4

2 回答 2

1

在您的 java/pojo 类中从属性文件中获取值写入 -

@value("${table1_details}")
String tableDetails;

@value("${log_path}")
String logpath;

您还必须在 xml 中提及您的属性文件 -

<context:place-holder location="classpath*:myTest.properties">

并在 xml 文件调用 get 方法中读取 POJO 的值,例如 -

<bean id="abc" class = "qwe.ert.MyClass"/> 
<bean id="xyz" class= "qwe.ert.NewClass">
    <property name="tableDetails" value="#{abc.getTableDetails()}">
    <property name="log" value="#{abc.getLogPath()}">
</bean>
于 2017-06-21T08:52:54.347 回答
0

用注释你的类

@PropertySource("sourceOfProperty")

向字段注入值

@Value(${property})

您还可以从 Environment 访问属性

env.getProperty("property")
于 2017-06-19T13:40:26.053 回答