> For the complete documentation index, see [llms.txt](https://cxz.gitbook.io/spring-cloud-date-flow/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cxz.gitbook.io/spring-cloud-date-flow/shell/untitled-5/untitled-3.md).

# Property files规则

当从 property 文件中加载属性时，规则会放开。

* property 文件(Java和YAML)中使用的特殊字符需要转义。例如，应该用`\\`替换`\`，用`\\t`替换`\t`等等。
* 对于Java属性文件(——propertiesFile \<FILE\_PATH>.properties)，属性值不应该用引号括起来!  即使它们包含空格，也不需要它。

```yaml
filter.expression=payload > 5
```

* 但是，对于YAML文件（`--propertiesFile`\<FILE\_PATH> .yaml），属性值必须用双引号括起来。

```
app:
    filter:
        filter:
            expression: "payload > 5"
```
