Spring @Value TypeMismatchException:无法转换类型' java.lang.String'的值到必需的类型' java.lang.Double'

时间:2017-03-11 08:29:20

标签: java spring spring-el spring-properties property-placeholder

我想使用@Value注释来注入Double属性,例如:

@Service
public class MyService {

    @Value("${item.priceFactor}")
    private Double priceFactor = 0.1;

// ...

并使用Spring属性占位符(属性文件):

item.priceFactor=0.1

我得到例外:

  

org.springframework.beans.TypeMismatchException:无法转换   type' java.lang.String'的值要求的类型' java.lang.Double&#39 ;;   嵌套异常是java.lang.NumberFormatException:对于输入字符串:   " $ {item.priceFactor}"

有没有办法使用来自属性文件的Double值?

3 个答案:

答案 0 :(得分:31)

尝试更改以下行

<Button
        android:text="@string/text1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"     
        android:onClick="btnHelp"
        android:id="@+id/btnHousing"
        />
    <Button
        android:text="@string/text2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="btnHelp"
        android:id="@+id/btnFood"
        />

@Value("${item.priceFactor}")

答案 1 :(得分:3)

这应解决问题 -

@Value("#{new Double.parseDouble('${item.priceFactor}')}")
private Double priceFactor;

答案 2 :(得分:-1)

如何存储字符串并通过getter和setter转换为整数和双精度数字?对于使用Java注入的安全代码,您应该总是使用getter和setter,并且在任何情况下都只能用于其他方法。我建议你热烈地阅读有关Java安全性(不适用于黑客)的内容,但更多的是代码使用和编写上传的内容,使用注入。