263.6. 위치 정의

PropertiesResolver 는 속성을 확인할 위치를 알아야 합니다. 여러 위치에 1을 정의할 수 있습니다. 단일 String 속성에 위치를 정의하는 경우 다음과 같은 쉼표로 여러 위치를 분리할 수 있습니다.If you define the location in a single String property you can separate multiple locations with comma such as:

pc.setLocation("com/mycompany/myprop.properties,com/mycompany/other.properties");

Camel 2.19.0에서 사용 가능

기본적으로 false인 선택적 특성을 설정하여 누락된 경우 삭제할 수 있는 위치를 설정할 수 있습니다.

pc.setLocations(
    "com/mycompany/override.properties;optional=true"
    "com/mycompany/defaults.properties");