59.2. 使用带有 'JacksonXML'DataFormat 的 jsonView 属性的 include/Exclude 字段
例如,您可以使用此属性而不是:
JacksonXMLDataFormat ageViewFormat = new JacksonXMLDataFormat(TestPojoView.class, Views.Age.class); from("direct:inPojoAgeView"). marshal(ageViewFormat);
JacksonXMLDataFormat ageViewFormat = new JacksonXMLDataFormat(TestPojoView.class, Views.Age.class);
from("direct:inPojoAgeView").
marshal(ageViewFormat);
直接将 Java DSL 中的 JSON 视图 指定为:
from("direct:inPojoAgeView"). marshal().jacksonxml(TestPojoView.class, Views.Age.class);
from("direct:inPojoAgeView").
marshal().jacksonxml(TestPojoView.class, Views.Age.class);
在 XML DSL 中相同:
<from uri="direct:inPojoAgeView"/> <marshal> <jacksonxml unmarshalType="org.apache.camel.component.jacksonxml.TestPojoView" jsonView="org.apache.camel.component.jacksonxml.Views$Age"/> </marshal>
<from uri="direct:inPojoAgeView"/>
<marshal>
<jacksonxml unmarshalType="org.apache.camel.component.jacksonxml.TestPojoView" jsonView="org.apache.camel.component.jacksonxml.Views$Age"/>
</marshal>