我想在spring-context.xml文件中设置属性并实例化具有long dataType的setter方法的类。

package com.mob.test;

class Test
{

private long timeInMillis;

//getter and setter
}


test.properties

TIME_IN_MINUTES=10


Spring-context.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="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-4.2.xsd">


    <context:property-placeholder location="classpath:test.properties"/>

    <bean id="ready"
        class="com.mob.test.Test">
        <property name="timeInMillis" value="${TIME_IN_MINUTES}*60*1000"/>
    </bean>
</beans>


给出NumberFormateException。

我怎么解决这个问题。

最佳答案

试试这个:Expression support for defining bean definitions

#{ systemProperties['TIME_IN_MINUTES'] * 60 * 1000 }

07-28 03:06
查看更多