先说明冒号的作用 :可以设置默认值
@Value中可以使用
@Value("${hello:defaultValue}")
private String hello;
若找不到属性值hello,那么就会默认赋值 defaultValue