181.4. Samples
例如,您可以使用类似如下的内容
from("activemq:My.Queue"). to("jolt:com/acme/MyResponse.json");
和基于文件的资源:
from("activemq:My.Queue"). to("jolt:file://myfolder/MyResponse.json?contentCache=true"). to("activemq:Another.Queue");
您还可以指定组件应该通过标头动态使用哪些规格,例如:
from("direct:in"). setHeader("CamelJoltResourceUri").constant("path/to/my/spec.json"). to("jolt:dummy?allowTemplateFromHeader=true");
警告
启用 allowTemplateFromHeader
选项具有安全等级。例如,如果标头包含不受信任的或用户派生的内容,这最终可能会影响您的最终应用的自信性和完整性,因此请谨慎使用这个选项。