267.3. 配置 quartz.properties 文件
				默认情况下,Qartz 将在 classpath 的 org/quartz 目录中查找 quartz.properties 文件。如果您使用 WAR 部署,则意味着在 WEB-INF/classes/org/quartz 中丢弃 quartz.properties。
			
但是,Camel Quartz 组件还允许您配置属性:
| 参数 | 默认 | 类型 | 描述 | 
|---|---|---|---|
|   
								  |   
								  |   
								  |   
								Camel 2.4 :您可以配置   | 
|   
								  |   
								  |   
								  |   Camel 2.4 :要从类路径加载的属性名称  | 
要做到这一点,您可以在 Spring XML 中配置它,如下所示
<bean id="quartz" class="org.apache.camel.component.quartz.QuartzComponent">
    <property name="propertiesFile" value="com/mycompany/myquartz.properties"/>
</bean>
<bean id="quartz" class="org.apache.camel.component.quartz.QuartzComponent">
    <property name="propertiesFile" value="com/mycompany/myquartz.properties"/>
</bean>