Spring 4 O/X在其抽象背后支持多个XML解组器。我们使用JAXB2。
Spring可以根据模式验证传入的XML吗?我在官方文档和spring-oxm模式中都没有找到任何描述配置的内容。这是我目前的配置,相当标准。
<bean id="jaxb2Marshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
<property name="marshallerProperties">
<map>
<!-- properties here -->
</map>
</property>
<property name="classesToBeBound">
<list>
<value>com.example.Message1</value>
<value>com.example.Message2</value>
</list>
</property>
</bean>
"Spring可以根据架构验证传入的XML吗?"
如果设置schema
属性:
public class Jaxb2Marshaller ... {
/**
* Set the schema resource to use for validation.
*/
public void setSchema(Resource schemaResource) {
this.schemaResources = new Resource[] {schemaResource};
}
/**
* Set the schema resources to use for validation.
*/
public void setSchemas(Resource... schemaResources) {
this.schemaResources = schemaResources;
}
}
CCD_ 2将使用那些模式来进行验证。因此,在您的上下文xml中,您可以执行类似的操作
<bean id="jaxb2Marshaller"
class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
<property name="schema" value="classpath:myschema.xsd"/>
<property name="classesToBeBound">
<list>
<value>com.example.Message1</value>
<value>com.example.Message2</value>
</list>
</property>
</bean>