我创建了一个简单的Web服务(spring-web),用于验证与XSD相关的传入XML,如果发生任何验证错误,则应将它们返回给请求者。
以下代码完成了它的工作......
@PostMapping(path = "/test", consumes = MediaType.APPLICATION_XML_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Object> method2(@RequestBody Source request) throws IOException, JAXBException, SAXException {
final URL schemaUrl = resourceLoader.getResource("classpath:test.xsd").getURL();
final CumulatingErrorHandler errorHandler = new CumulatingErrorHandler();
final Schema schema = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI)
.newSchema(schemaUrl);
final ValidationEventCollector validationEventCollector = new MyValidationEventCollector();
final Unmarshaller unmarshaller = JAXBContext
.newInstance(IncomingRequestModel.class)
.createUnmarshaller();
unmarshaller.setEventHandler(validationEventCollector);
unmarshaller.setSchema(schema);
final IncomingRequestModel requestModel = (IncomingRequestModel) unmarshaller.unmarshal(request);
if (validationEventCollector.hasEvents()) {
HttpHeaders responseHeaders = new HttpHeaders();
responseHeaders.setContentType(MediaType.APPLICATION_JSON_UTF8);
return new ResponseEntity<>(validationEventCollector.getEvents(), responseHeaders, HttpStatus.BAD_REQUEST);
}
/* do stuff */
}
...但是,由于一个奇怪的原因,它正在“累积”处理的请求之间的错误。在第一次请求期间,返回3个错误。同样,对于第2和第3个请求。但是,在第4次请求时,UnmarshallingContext中的计数器达到零(从10开始倒计时)并返回以下错误:
Errors limit exceeded. To receive all errors set com.sun.xml.internal.bind logger to FINEST level.
在第五次请求时,它不会抛出任何验证错误!只是为了表明 - 所有请求都完全相同。
为什么UnmarhsallingContext有一个静态计数器来阻止第5个请求被验证?我怎样才能克服这个问题?
我的构建配置:Spring boot 1.4.3.RELEASE,gradle deps:
dependencies {
compile('org.springframework.boot:spring-boot-starter-amqp')
compile('org.springframework.boot:spring-boot-starter-data-redis')
compile('org.springframework.boot:spring-boot-starter-jersey')
compile('org.springframework.boot:spring-boot-starter-web')
compile("com.fasterxml.jackson.core:jackson-databind")
compile("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
compileOnly('org.projectlombok:lombok:1.16.12')
compile("net.sf.dozer:dozer:5.5.1")
compile("net.sf.dozer:dozer-spring:5.5.1")
compile("org.apache.commons:commons-lang3:3.5")
testCompile('org.springframework.boot:spring-boot-starter-test')
}
答案 0 :(得分:1)
我今天遇到了同样的错误,并通过应用JAXB Messages.properties中的建议来克服它:在调用解组之前添加java.util.logging.Logger.getLogger("com.sun.xml.internal.bind").setLevel(Level.FINEST);
。