383.2. Spring Boot Auto-Configuration
구성 요소는 아래 나열된 5 가지 옵션을 지원합니다.
| 이름 | 설명 | 기본값 | 유형 |
|---|---|---|---|
| camel.dataformat.zipfile.allow-empty-directory | zip 파일에 하나 이상의 항목이 있는 경우 이 옵션을 true로 설정하면 디렉터리가 비어 있어도 반복기를 가져올 수 있습니다. | false | 부울 |
| camel.dataformat.zipfile.content-type-header | 데이터 형식이 데이터 형식에서 수행할 수 있는 경우 데이터 형식의 유형으로 Content-Type 헤더를 설정해야 하는지 여부입니다. 예를 들어 데이터 형식을 XML로 마샬링하거나, JSon으로 마샬링되는 데이터 형식에 대한 application/json 등이 있습니다. | false | 부울 |
| camel.dataformat.zipfile.enabled | zipfile 데이터 형식 사용 | true | 부울 |
| camel.dataformat.zipfile.preserve-path-elements | 파일 이름에 경로 요소가 포함된 경우 이 옵션을 true로 설정하면 zip 파일에서 경로를 유지 관리할 수 있습니다.If the file name contains path elements, setting this option to true, allows the path to be maintained in the zip file. | false | 부울 |
| camel.dataformat.zipfile.using-iterator | zip 파일에 하나 이상의 항목이 있는 경우 이 옵션을 true로 설정하면 splitter EIP를 사용하여 스트리밍 모드에서 데이터를 분할할 수 있습니다.If the zip file has more then one entry, the setting this option to true, allows to work with the splitter EIP, to split the data using an iterator in a streaming mode. | false | 부울 |
ND