Spring application.properties文件中的布尔值?

时间:2015-12-30 12:03:58

标签: java spring properties-file

是否可以在Spring配置文件中使用布尔值?

我在我的bean中写了以下字段:

@Value("${pdk.populatedemo}")
private boolean populateDemo;

但是如果导致以下异常:

Could not autowire field: private boolean com.inthemoon.pdk.data.DatabaseService.populateDemo; nested exception is org.springframework.beans.TypeMismatchException: 
Failed to convert value of type [java.lang.String] to required type [boolean]; nested exception is java.lang.IllegalArgumentException: 
Invalid boolean value [1;]

在这里我试过

pdk.populatedemo=1;
application.properties中的

。我还尝试了=true和其他一些。

1 个答案:

答案 0 :(得分:16)

布尔类型的正确值是

pdk.populatedemo=true

1不是布尔字段的有效值,您不能在属性文件中使用分号作为布尔值(正如您在错误消息中清楚地看到的那样)。