本文整理汇总了Java中org.springframework.xml.xsd.SimpleXsdSchema类的典型用法代码示例。如果您正苦于以下问题:Java SimpleXsdSchema类的具体用法?Java SimpleXsdSchema怎么用?Java SimpleXsdSchema使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SimpleXsdSchema类属于org.springframework.xml.xsd包,在下文中一共展示了SimpleXsdSchema类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testSetSchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Test
public void testSetSchema() throws Exception
{
SchemaRequestValidator validator = new SchemaRequestValidator();
validator.setXsdSchema(new SimpleXsdSchema(new ClassPathResource("xml/schema.xsd")));
validator.afterPropertiesSet();
assertNotNull(validator.getValidator());
WebServiceMessage message = getInvalidMessage();
try
{
createValidator().validateRequest(null, message);
fail("Exception expected");
}
catch(WsTestException e)
{
assertTrue(e.getMessage().contains("Source message:"));
}
}
示例2: SchemaModelConverter
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
/**
* Default constructor.
*/
public SchemaModelConverter() {
super(SchemaModel.class, SimpleXsdSchema.class);
addDecorator(new MethodCallDecorator("setLocation", "setXsd") {
@Override
public Object decorateArgument(Object arg) {
getAdditionalImports().add(ClassPathResource.class);
return "new ClassPathResource(\"" + arg.toString() + "\")";
}
});
}
示例3: contentStoreSchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
/**
* Publishing XML schema
* @return The XSD definition
*/
@Bean
public XsdSchema contentStoreSchema() {
SimpleXsdSchema xsdSchema = new SimpleXsdSchema();
xsdSchema.setXsd(new ClassPathResource("contentStoreSchema.xsd"));
return xsdSchema;
}
开发者ID:vanioinformatika,项目名称:spring-boot-integration-example,代码行数:11,代码来源:ExampleIntegrationApplication.java
示例4: testSetSchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Test(expected=WsTestException.class)
public void testSetSchema() throws Exception
{
SchemaRequestValidator validator = new SchemaRequestValidator();
validator.setXsdSchema(new SimpleXsdSchema(new ClassPathResource("xml/schema.xsd")));
validator.afterPropertiesSet();
assertNotNull(validator.getValidator());
WebServiceMessage message = getInvalidMessage();
createValidator().validateRequest(null, message);
}
示例5: coursesSchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Bean
public XsdSchema coursesSchema() {
return new SimpleXsdSchema(new ClassPathResource("course-details.xsd"));
}
示例6: countriesSchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Bean
public XsdSchema countriesSchema() {
return new SimpleXsdSchema(new ClassPathResource("countries.xsd"));
}
示例7: customersSchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Bean
public XsdSchema customersSchema() {
return new SimpleXsdSchema(new ClassPathResource("customers.xsd"));
}
示例8: modelsSchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Bean
public XsdSchema modelsSchema() {
return new SimpleXsdSchema(new ClassPathResource("models.xsd"));
}
示例9: convert
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Override
public SchemaModel convert(String id, SimpleXsdSchema model) {
SchemaModel converted = convert(model);
converted.setId(id);
return converted;
}
示例10: mySchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Bean
public SimpleXsdSchema mySchema() {
return new SimpleXsdSchema();
}
示例11: countriesSchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Bean
public XsdSchema countriesSchema() {
return new SimpleXsdSchema(new ClassPathResource("META-INF/schemas/hr.xsd"));
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:5,代码来源:WebServiceConfig.java
示例12: countriesSchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Bean
public XsdSchema countriesSchema() {
return new SimpleXsdSchema(new ClassPathResource("countries.xsd"));
}
示例13: paymentSchema
import org.springframework.xml.xsd.SimpleXsdSchema; //导入依赖的package包/类
@Bean
public XsdSchema paymentSchema() {
return new SimpleXsdSchema(paymentV1XSDResource());
}